Unicode Finder

"๐Ÿ‘ช" U+1F46A(FAMILY)

๐Ÿ‘ช
U+1F46A
ุงุณู… ุงู„ูƒุชู„ุฉ
Miscellaneous Symbols and Pictographs
ุงู„ุงุณู…
FAMILY

Programming

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

Web

CSS
\01F46A
HtmlDecimal
👪
HtmlHexadecimal
👪
Url
%F0%9F%91%AA

Code

MD5
08e3d17fe2e3adc5ce3045d75263a260
Sha1
77de332c7098255106fc8fdd912602a211f29cc1
Base64
8J+Rqg==

ุฃู…ุซู„ุฉ ุงู„ุงุณุชุฎุฏุงู…

Programming Languages

C:

char c = '\u1F46A';
printf("%c\n", c);  // Output: ๐Ÿ‘ช

JavaScript:

const char = '\u1F46A';
console.log(char);  // Output: ๐Ÿ‘ช

Java:

char c = '\u1F46A';
System.out.println(c);  // Output: ๐Ÿ‘ช

JSON:

{"text": "\u1F46A"}  // Value: ๐Ÿ‘ช

Python:

char = '\u1F46A'
print(char)  # Output: ๐Ÿ‘ช

Perl:

my $char = "\x{1F46A}";
print $char;  # Output: ๐Ÿ‘ช

PHP:

$char = "\x{1F46A}";
echo $char;  // Output: ๐Ÿ‘ช

Ruby:

char = "\u{1F46A}"
puts char  # Output: ๐Ÿ‘ช

Rust:

let c = '\u{1F46A}';
println!("{}", c);  // Output: ๐Ÿ‘ช

Go:

char := '\u1F46A'
fmt.Printf("%c\n", char)  // Output: ๐Ÿ‘ช

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F46A";  /* Display: ๐Ÿ‘ช */
}

HTML Decimal:

<p>HTML decimal: &#128106;</p>  <!-- Display: ๐Ÿ‘ช -->

HTML Hexadecimal:

<p>HTML hex: &#x1F46A;</p>  <!-- Display: ๐Ÿ‘ช -->

URL Encoding:

// ๐Ÿ‘ช URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%91%AA

Encodings

MD5:

08e3d17fe2e3adc5ce3045d75263a260

SHA1:

77de332c7098255106fc8fdd912602a211f29cc1

Base64:

8J+Rqg==