With Borland Pascal, #32 is the same as Chr(32), except it is a literal character constant of the ordinal value 32 (i.e.: a space)
You may see it used for something, say as a linebreak (although sLineBreak is there for the better):
ShowMessage('Error:'#13#10'There was a problem with the input.')
Delphi supported Unicode since version 4 I believe: #$133f ($ denoting hexdecimal)
Be sure to read the updated
FAQ! || Health is achieved through the same 10,000 steps.
If a suggested code/method fails, informing us is less important than telling us
why or
what errors occurred.