Quotation Marks display as boxes

I need to figure out why in some instance quotation marks
display as boxes.
This may also be a ColdFusion question but I'll start here:
I have a site that displays articles from a coldfusion
database. The articles display fine. There is no css or font tag
applied to the text (so basically displaying default fonts).
Now, I gave the page a new name and surrounded the code with
formatting css. All quotation marks display as square box. I
thought it may depend on the font that I chose (Ariel). So I
removed the css style sheet for a moment but the quotation marks
still show as box. Since I have the same code to pull the data,
same browser, same computer, this is puzzling.
Any idea what is causing this?
Thanks.

Are the quotes 'straight' quotes, or 'curly' quotes? Although
both straight
and curly quotes are special characters (" and
“ respectively) a
' " ' (i.e. straight quote) will usually appear as a straight
quote when put
directly in the code, but I have never had curly quotes
appear correctly. I
guess this is because quotes are used within attributes and
so on in regular
HTML.
If this isn't your problem then someone else will answer
better than I
have...
Regards,
Bruce
"weblinkstudio" <[email protected]> wrote in
message
news:gnv4mg$82f$[email protected]..
>I need to figure out why in some instance quotation marks
display as boxes.
> This may also be a ColdFusion question but I'll start
here:
>
> I have a site that displays articles from a coldfusion
database. The
> articles
> display fine. There is no css or font tag applied to the
text (so
> basically
> displaying default fonts).
>
> Now, I gave the page a new name and surrounded the code
with formatting
> css.
> All quotation marks display as square box. I thought it
may depend on the
> font
> that I chose (Ariel). So I removed the css style sheet
for a moment but
> the
> quotation marks still show as box. Since I have the same
code to pull the
> data,
> same browser, same computer, this is puzzling.
> Any idea what is causing this?
> Thanks.
>

Similar Messages

  • Type tool quotation marks display like greater-than symbols

    I'm having trouble with getting quotation marks to display correctly, they look like 2 stacked >> symbols.  They change slightly depending on what font I'm using, but they all ride at the base of the text.  I cannot acheive normal looking curly or staight quotes at all.  I have tried switching smart quotes on and off in the preferences, restarting, etc.  I've noticed this problem in the past, but I thought it was the font I was using.  The same thing happens with Times New Roman.  I'm running an up to date version of PSextended CS5, 64bit on win 7 64.  Any help would be greatly appreciated!

    Not sure if this is where you looked, but check the overall Windows settings as follows: 
    Click Start and type Language in the search box.  When Region and Language comes up, click it. 
    Look through all the tabs to ensure everything's set as expected.
    Outside of finding something unexpected in there, it's never a bad idea to try resetting the Character tool, or even the Photoshop overall preferences.  To reset the Type Tool, select the T tool, then right-click in the T tool icon in the options area:
    -Noel

  • Quotation marks display as &quot in web pages, I'm using Unicode UTF-8 character encoding.

    On many web pages, where a quotation mark character should appear, instead the page displays the text &quot. I believe this happens with other punctuation characters as well such as apostrophes although the text displayed in these other cases is different, of course. I'm guessing this is a problem with character encoding. I'm currently set to Unicode (UTF-8) encoding. Have tried several others without success.

    Here's a link where the problem occurs. Note the second line of the main body of text.
    http://www.sierratradingpost.com/lp2/snowshoes.html
    BTW, I never use IE, but I checked this site in IE and it shows the same problem, so maybe it is the page encoding after all rather than what I thought.
    In any case, my thanks for your help and would appreciate any solution you can suggest.

  • How Do I Display Quotation Marks in Dynamic HTML Text

    I'm using a dynamic text file that has some Quotation Marks
    that need to be displayed with the content on certain words in the
    TXT file.
    How do i display Quotation Marks inside a Dynamic text field?
    Please Advise. As soon as possible.
    Thanks

    Try this page - it does the job for you:
    http://www.dommermuth-1.com/protosite/experiments/encode/index.html
    Otherwise search this forum for "Special and characters and
    dynamic and text"
    You'll see a couple of thread on the topic. You have to
    encode the special characters for them to display correctly.

  • How to display quotation marks in output.

    i just want to display
    'all is well if it end's well' in output with the quotation marks .
    how is it possible.

    If you are on newer releases, you can writ it like this.
    write:/  `all is well if it end's well`.
    Notice that the wrapper is the
    `
    and not the
    Regards,
    Rich Heilman

  • Servlet Displaying Quotation Marks as Non-Printable Characters

    I have a servlet which is reading an HTML file and displaying it's contents. My problem is that, in the output, quotation marks in the source html (" and ') are being reproduced as non-printable characters (). Furthermore, the same servlet prints the quotation marks fine under the Linux OS and Apache Web Server, but does not under the Windows (2000) OS and IIS Web Server (running j2sdk-1_3_0_02-win). Any suggestions would be appreciated. Code in question is below. "str" is the line from the file. :
         FileReader freader = new FileReader (filePath);
         BufferedReader breader = new BufferedReader(freader);
         String str = null;
         while ((str = breader.readLine()) != null) {
         document = document + str + "\n";
         freader.close();

    Technically, you don't need to add the "\n" in there anyway. Newlines mean nothing to an HTML file if all you're doing is displaying that file. The lack of a carriage return, when the HTML is parsed, is completely irrelevant.
    Also, when handling large String concatenations, it's always going to be more efficient to use StringBuffer.
    StringBuffer sbDocument = new StringBuffer();
    while((str = breader.readLine()) != null)
       sb.append(str);
    String document = sbDocument.toString()

  • Quotation marks and special characters

    Hello,
    Does anyone know why quotations marks are rendered as a box (space?)
    character on JSP page when displayed as a portlet? They are displayed fine
    as a standalone JSP page.
    Thank you,
    Makoto

    Hi Brodi,
    Thanks for your insight! Actually we're using WLP 7 - so no visitor tools.
    The JSP page doesn't explicitly set the encoding and I'm looking for a tag
    line or code that specifies it for the portal page, along with .portal file.
    So far I've only seen a reference to character set in i18n:localize tag. Are
    the portlet pages processed with certain encoding defined in such tags
    before pushed out to the portal page?
    Thank you,
    Makoto
    "Brodi Beartusk" <[email protected]> wrote in message
    news:[email protected]..
    >
    Makoto-
    Sounds like a mismatch between the output encoding used between the jspand the
    portal. When running the jsp stand-along, it is the jsp that determinesthe output
    encoding, while when running from within the portal, it is the .portalfile or
    the streamed db portal that determines the output encoding.
    If you are using a .portal file, the portal:directive.page element (foundimmediately
    after portal:root) is used to define the output encoding, as in:
    <portal:directive.page contentType="text/html;charset=UTF-8"/>
    If you are using a streamed portal, I believe you can use the Visitortools to
    set the output encoding for a desktop.
    By default, all portals should have their output encoding specified asUTF-8.
    I would recommend using the same for your jsp's.
    -Brodi Beartusk

  • Quotation marks in cuepoints

    I'm using cuepoints to display closed captions for a
    streaming flash (flv) video. Everything's working great, except
    that the quotation marks (") and apostrophes (') are displaying as
    code like "&apos;". Curly quotes don't show up at all. I also
    tried putting a backslash before the quote, and changing the
    display box in Flash to display HTML, but no go.
    Does anybody know how to display quotes in cuepoint files?
    thanks.
    John

    It means that the sender thinks the message is urgent.

  • Bind variables in double quotation marks are not recognized

    Hello,
    when I do "Execute Statement" (F9) in the SQL Worksheet and the statement incorporates a bind variable in the form :"Some Variable", i.e. variable name is in double quotation marks, I will get an error message "ORA-01008: not all variables bound". No prompt for entering the bind variables is displayed. Our application uses this kind of bind variables only and it is quite time consuming to change all the bind variable names before executing it especially when bind variable names contain spaces. Is there an option to enable recognition of this kind of bind variables? If not I would like to see this annoying issue fixed.
    I am running Oracle SQL Developer 1.5.1 build MAIN-5440.
    I am connecting from the Windows XP SP2 (32bit) box to Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 (64bit) using Basic connection type.

    Hi mc1100 ,
    Bug logged: Bug No: 7323289 F9 BIND VARIABLES SHOULD BE ABLE TO BE IN DOUBLE QUOTES AND HAVE SPACES.
    -Turloch

  • Getting Quotation Marks to look like they were mirrored. In GREP or Regular find and change

    Hello,
    Is there anyway to make quotation marks come out like this image below.
    Right now I have 2 text boxes to make it work, as I cannot get the first double quote to look like a mirrored version of the right double quote ;-(
    This is what it needs to look like.
    Thanks,
    Babs

    Peter wrote:
    When you copy someone else's copy of Sgt. Pepper you deprive the distibutor of his profit on the legitimate sale and you deprive Mssrs Mc Cartney and Starr of their rightful royalties, which may be piddling, but every little bit counts.
    Little bits do not count for as much as great big bits, and it is rule-worship to assume that they do. There is no proportionality in grouping very different sorts of violation together as if they were all in the same league of criminality. Picking up a dime someone has dropped in the street is completely different from breaking into someone's house and stealing a large quantity of money.
    You'd have a fit if you found out I was using a logo you designed, without permission, and was making money from publishing it. Suppose I hacked into your system and copied your last completed job and handed it to your client before you could deliver and bill them? Would you be upset if they went ahead and used your work and didn't bother to pay you because, after all, there was no 'property' involved and they have what they need without cost?
    Yes, I would regard that as a serious legal offense, and would follow it up with the full rigors of the law. But it is not "theft" in the proper sense of the word, in my opinion, because an idea (design, logo, etc.) is a type rather than a physical token. Its authorship must be protected, its origination acknowledged, monetarily rewarded, and all that, but the idea that it has an "owner" is the product of philosophical and logical confusion.
    Human tend to over-extend the concept of ownership to all sorts of things that cannot legitimately be owned, such as other people. Even nowadays, following the abolition of slavery, many people consider themselves the owners of their spouses, children, employees, pets, etc..
    Message was edited by: Jeremy bowmangraphics
    PS: Forgot to add that I have paid for Sgt. Pepper four times already -- in mono vinyl, stereo vinyl, tape cassette, and CD. Don't you think it's time we all deserved an "upgrade"?

  • Putting tick mark into check box in smartform

    hi,
       can any one please let me know if i can put a tick mark in the check box of the smartform.
       for example: i need to select one among yes or no check box. how do i do it.
       should i have to upload a graphic of the tick mark and then display or is there any provision in smartforms to do that.

    Hi,
    Check threads like
    smartform- check box
    and
    what r the steps to display check box in smartform
    Eddy
    PS.
    Put yourself on the SDN world map (http://sdn.idizaai.be/sdn_world/sdn_world.html) and earn 25 points.
    Spread the wor(l)d!

  • Problem with quotation marks in Reports

    Hello,
    in Reports i have a text item, and i wrote a text „test” (this is copy/paste from a Word Document). At runtime i see ?text?
    Why those quotation marks does not appear correctly at runtime?
    It's about Reports Developer 2000. Please help if you can.
    Regards,

    my NLS_LANG, before editing in registry was AMERICAN_AMERICA.WE8ISO8859P1 (without that '5' at the end).
    it's WE8ISO8859P1 not WE8ISO8859P15. and i have the NLS_LANG, AMERICAN_AMERICA.WE8ISO8859P1. stil not displaying ok..
    this problem has nothing about the server, but the client, i think.
    the problem appears when i call a report from a form. when i run the report inside Report Builder, the quotation marks appears as „ ".
    Regards

  • Quotation Marks and Validation

    I'm working with an XHTML transitional document.
    I read on another forum that it is not necessary to use &quot; for quotation marks in regular html, and that it will validate without them. So I pasted text from am MS Word document with several quotation marks in it in a web page and it validated fine.
    However, when I type in text with quotation marks in the design area of the Web page, Dreamweaver inserts the &quot; in the code, as if it is needed.
    What is strange is that in this same document, I typed in some quotation marks in the code, so Dreamweaver wouldn't automatically add the  &quot;. Then I ran the validation check, and this time I got warnings that I should be using the &quot; because the quotation marks are between tags--in this case just paragraph tags. And it only gave me the warning on the quotation marks I typed in in the code
    So what is the reason for this inconsistency?  And do I need to use the &quot;.
    I would appreciate any assistance with this.

    Typing quotation marks in the code is not the same as in the design.  In the code quotations are used in HTML and server-side languages such as PHP and ASP differently.  In these cases quotes are needed as quotes and not as an HTML &quot;.
    Examples:
    HTML - &quot;Hello World&quot;
    Prints to screen -> "Hello World"
    PHP - <?php echo "Hello World"; ?>
    Prints to screen -> Hello World
    HTML - <div style="border:1px solid #000">Hello World</div>
    Prints to screen -> Hello World [Box surrounds text with 1px solid black border]
    HTML - <div style=&quot;border:1px solid #000&quot;>Hello World</div>
    Prints to screen -> [I'm not exactly sure what this does but it's not right and could look different in every browser]
    Hopefully this makes some sense as to why DW does what it does.  If you still have questions feel free to post back.

  • Quotation Marks in Description Meta Tag

    I want to put quotation marks around a book title in a description meta tag. When I add them using the Description field in Properties, Dreamweaver substitutes &quot; for the quotation mark. I know it is doing this because the content= is in quotes. Will the quotation marks show up okay using these html entities in all search engine results that display what is in my description meta tag?
    Also, does it work okay to use html. like <em>   </em> in head meta tags?

    You're spitting into the wind with this.  Descriptions in your meta tags are displayed by some but not all search engines.  And the manner in which your meta descriptions appear on SERPs is totally out of your control.  USE ALL CAPS for BOOK TITLES.  Regular case for all the rest.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • When downloading text, quotation marks, commas & apostrophes are rendered as gibberish. How can I cure this?

    I use IBM Lotus Symphony as my default word processor. When I download materials as .txt, all apostrophes, quotation marks and hyphens are shown as gibberish> How do I get them to download and display normally?
    == This happened ==
    Every time Firefox opened
    == Some time ago

    I want to ask for more information. Do these files look ok in Firefox/Lotus/and another word processor? Where do you download them from and to?
    If you have a problem with display of fonts in Firefox, you can try to change font setting in Tools menu, Options window, Content panel, fonts section.

Maybe you are looking for

  • Can't get my class's getter method to work properly.

    Hello, I am new to Java programming, although I come from C and C++. This is my first post. I am working on a basic Library application that can Checkout and Return books. Eventually I would like to add the ability to read from and write to an XML fi

  • Problem of TimedObject in AppServer 9

    Hi Experts, I have created a TimedObject ejb to generate a text file periodically. It worked in App Server 8.1. However, after I have upgraded to App Server 9.0, it does not work any more. The following exception appears when I try to schedule to exe

  • Satellite L300-20D is not starting up fully

    Please can someone help me out. I have a L300 20D toshiba and it has just stopped starting up fully. It goes to a black screen with the cursor arrow on or it just shows the launch windows (recommended repair) when i click this it does nothing. I have

  • Is it possible to get 2-ch signals from TDS2012 oscilloscope at the same time with LabVIEW "7.0"?

    Hi, everyone. I've been trying to get the signals from 2-ch of Tektronix TDS2012 oscilloscope at the same time using IVI connection with LabVIEW "7.0" I've already searched this developer zone for the answer. I've tried the famous example: "IviScope

  • BW Source System re-configuration

    Hi, I need to change the Source System in our BW Server. The Source System is R/3 310 Client, and now we need it to be R/3 300 Client, both Development and Production systems. ¿Can I change the Source System Cliente field value from 310 to 300 and th