Unicode Finder

"๐Ÿ”ข" U+1F522(INPUT SYMBOL FOR NUMBERS)

๐Ÿ”ข
U+1F522
Block Name
Miscellaneous Symbols and Pictographs
Name
INPUT SYMBOL FOR NUMBERS

Programming

C
\u1F522
JavaScript
\u1F522
Java
\u1F522
Json
\u1F522
Python
\u1F522
Perl
\x{1F522}
PHP
\x{1F522}
Ruby
\u{1F522}
Rust
\u{1F522}
Go
\u1F522

Web

CSS
\01F522
HtmlDecimal
🔢
HtmlHexadecimal
🔢
Url
%F0%9F%94%A2

Code

MD5
f5d78dea20f2f98f4c8951c97e7db724
Sha1
53fc8dd8e5e36867865218ba915fe350e98b4104
Base64
8J+Uog==

Usage Examples

Programming Languages

C:

char c = '\u1F522';
printf("%c\n", c);  // Output: ๐Ÿ”ข

JavaScript:

const char = '\u1F522';
console.log(char);  // Output: ๐Ÿ”ข

Java:

char c = '\u1F522';
System.out.println(c);  // Output: ๐Ÿ”ข

JSON:

{"text": "\u1F522"}  // Value: ๐Ÿ”ข

Python:

char = '\u1F522'
print(char)  # Output: ๐Ÿ”ข

Perl:

my $char = "\x{1F522}";
print $char;  # Output: ๐Ÿ”ข

PHP:

$char = "\x{1F522}";
echo $char;  // Output: ๐Ÿ”ข

Ruby:

char = "\u{1F522}"
puts char  # Output: ๐Ÿ”ข

Rust:

let c = '\u{1F522}';
println!("{}", c);  // Output: ๐Ÿ”ข

Go:

char := '\u1F522'
fmt.Printf("%c\n", char)  // Output: ๐Ÿ”ข

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F522";  /* Display: ๐Ÿ”ข */
}

HTML Decimal:

<p>HTML decimal: &#128290;</p>  <!-- Display: ๐Ÿ”ข -->

HTML Hexadecimal:

<p>HTML hex: &#x1F522;</p>  <!-- Display: ๐Ÿ”ข -->

URL Encoding:

// ๐Ÿ”ข URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%94%A2

Encodings

MD5:

f5d78dea20f2f98f4c8951c97e7db724

SHA1:

53fc8dd8e5e36867865218ba915fe350e98b4104

Base64:

8J+Uog==