Re: harsh[sup]gupta[/sup]
Re: Hey RobDog - plz ® (r)
Press Alt+0174 and it will create the ® character. :D
Re: Hey RobDog - plz ® (r)
Re: Hey RobDog - plz ® (r)
Re: Hey RobDog - plz ® (r)
is there any list or web page listing all such combinations???
Re: Hey RobDog - plz ® (r)
I think those are ascii, if you know ASC and CHR perhaps you could try listing them yourself, I used to do that using C/C++/Pascal...
Re: Hey RobDog - plz ® (r)
as if by magic...
Code:
128: € 129: 130: ‚ 131: ƒ 132: „ 133: …
134: † 135: ‡ 136: ˆ 137: ‰ 138: Š 139: ‹
140: Œ 141: 142: Ž 143: 144: 145: ‘
146: ’ 147: “ 148: ” 149: • 150: – 151: —
152: ˜ 153: ™ 154: š 155: › 156: œ 157:
158: ž 159: Ÿ 160: 161: ¡ 162: ¢ 163: £
164: ¤ 165: ¥ 166: ¦ 167: § 168: ¨ 169: ©
170: ª 171: « 172: ¬ 173: * 174: ® 175: ¯
176: ° 177: ± 178: ² 179: ³ 180: ´ 181: µ
182: ¶ 183: · 184: ¸ 185: ¹ 186: º 187: »
188: ¼ 189: ½ 190: ¾ 191: ¿ 192: À 193: Á
194: Â 195: Ã 196: Ä 197: Å 198: Æ 199: Ç
200: È 201: É 202: Ê 203: Ë 204: Ì 205: Í
206: Î 207: Ï 208: Ð 209: Ñ 210: Ò 211: Ó
212: Ô 213: Õ 214: Ö 215: × 216: Ø 217: Ù
218: Ú 219: Û 220: Ü 221: Ý 222: Þ 223: ß
224: à 225: á 226: â 227: ã 228: ä 229: å
230: æ 231: ç 232: è 233: é 234: ê 235: ë
236: ì 237: í 238: î 239: ï 240: ð 241: ñ
242: ò 243: ó 244: ô 245: õ 246: ö 247: ÷
248: ø 249: ù 250: ú 251: û 252: ü 253: ý
254: þ 255: ÿ
Excel macro code to create it:
VB Code:
Dim lcol As Long, lrow As Long
Dim i As Long
lcol = 0
lrow = 1
With ThisWorkbook.ActiveSheet
For i = 128 To 255
lcol = lcol + 1
If lcol > 6 Then
lcol = 1
lrow = lrow + 1
End If
.Cells(lrow, lcol) = i & ": " & Chr(i)
Next i
End With
Re: Hey RobDog - plz ® (r)
Just be sure to use the preceeding zero when typing it into the text reply box or ??? in order to get the correct corresponding character.
Re: Hey RobDog - plz ® (r)