This extension allows you to display and calculate various numerical values using PowerToys Command Palette.
Conversion between various number systems (decimal, hexadecimal, octal, binary).
Automatic detection of common format patterns:
- C style (e.g.,
0x1A3F
) - C++ style (with apostrophe digit group separator; e.g.,
0x123'ABCD
) - C# style (with underscore digit group separator; e.g.,
0x_1A3F_1230
,0b_1011_1010
) - VB style (e.g.,
&H1A3F
,&O755
,&B1010
) - Suffixes (e.g.,
1A3Fh
,755o
,123dec
,1010bin
) - Special characters (e.g.,
#1A3F
,@755
,$1010
) - ADA, LISP, R-style, etc.
Specify explicit bit length using the /length
parameter, useful for truncating or converting of negative numbers.
-123 dec -> 85 hex
-123 dec /length:dword -> FFFF FF85 hex
-123 dec /length:16 -> FFFF FF85 hex
Note: This extension requires Microsoft PowerToys to be installed.
Apache 2.0