Character code for upward & downward arrows

Pasty

Board Regular
Joined
Mar 26, 2007
Messages
96
Would anyone know what these are?

As I have ChrW(2191) and ChrW(2193) but it just gives me this symbol - ࢐

Regards,

Matt
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
In the Windings font they are 225 and 226, 233 and 234, 241 and 242. To use them in Excel hold down Alt and type zero then the number on the numeric keypad, eg Alt+0241.
 
Upvote 0
Hi,

I'm actually using them in my code and the font is Arial - would you know how to do this?
 
Upvote 0
Those are hexadecimal values. Try:

Code:
Sub Test()
    Range("A1").Value = ChrW(8593)
    Range("A2").Value = ChrW(8595)
End Sub
 
Upvote 0

Forum statistics

Threads
1,221,895
Messages
6,162,665
Members
451,781
Latest member
DylantheD

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top