Unicode Finder

"๐Ÿ‘ฟ" U+1F47F(IMP)

๐Ÿ‘ฟ
U+1F47F
ุงุณู… ุงู„ูƒุชู„ุฉ
Miscellaneous Symbols and Pictographs
ุงู„ุงุณู…
IMP

Programming

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

Web

CSS
\01F47F
HtmlDecimal
👿
HtmlHexadecimal
👿
Url
%F0%9F%91%BF

Code

MD5
7da78798436450374fc63dd3edf5f64f
Sha1
942a6036bf48a592ca06cf09ad06ef36aff6ef53
Base64
8J+Rvw==

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

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F47F"}  // Value: ๐Ÿ‘ฟ

Python:

char = '\u1F47F'
print(char)  # Output: ๐Ÿ‘ฟ

Perl:

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

PHP:

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

Ruby:

char = "\u{1F47F}"
puts char  # Output: ๐Ÿ‘ฟ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

7da78798436450374fc63dd3edf5f64f

SHA1:

942a6036bf48a592ca06cf09ad06ef36aff6ef53

Base64:

8J+Rvw==