Re: Mystery brake - font trivia



>>Blanks are NOT allowed in a URL. Thus
http://www.linghunt.com/Equipment/Mystery Brake.JPG
should be written as
http://www.linghunt.com/Equipment/Mystery%20Brake.JPG


A bit of font trivia for inquiring minds out there. %20 = a space in 8 bit Ascii (the % acts as a flag which says "the next string of numbers is the code for a character" and 20 is the ascii (also unicode) for a space (in hex). A few other common ones are %2C = comma, %3A = colon, %3B = semicolon, and %25 = percent.

Jim - former font geek

.



Relevant Pages

  • Deutsch nach ASCII konvertieren
    ... "ascii", $string, sub { ... also das to_ascii offenbar einen Latin-1-kodierten String will. ... Gefunden habe ich weiterhin eine kleine Sub, die die Ersetzung ... Ähnlich wie bei Variante 1 wird hier die Menge der Ersetzungs-Regexen ...
    (de.comp.lang.perl.misc)
  • UnicodeEncodeError in Windows
    ... def getdamage: ... """reads each line of war report ... """Build a string from a warrior's stats ... As I understand it the error is related to the ascii codec being ...
    (comp.lang.python)
  • Re: Reading LAST line from text file without iterating through the file?
    ... ASCII character values are limited to the 0-127 range. ... these days we use the 8th bit for accented characters instead ... Lines are a record format. ... way to represent an ArrayList<String> losslessly in a single String ...
    (comp.lang.java.programmer)
  • Best integer to string routines
    ... ASCII string, it can be in any format - zero-terminated, leading ... Convert byte value to ASCII hex string ... Convert byte value to ASCII decimal string ...
    (alt.lang.asm)
  • Re: Writing extended ascii characters to text file.
    ... so in order to get real ASCII codes you should use the GetBytes ... method of an Encoding instance configured for the ASCII encoding (as far as ... again, you've got bytes, not characters. ... > string line; ...
    (microsoft.public.dotnet.languages.csharp)