Unicode Finder

"🙉" U+1F649(HEAR-NO-EVIL MONKEY)

🙉
U+1F649
بلاک کا نام
Emoticons
نام
HEAR-NO-EVIL MONKEY

Programming

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

Web

CSS
\01F649
HtmlDecimal
🙉
HtmlHexadecimal
🙉
Url
%F0%9F%99%89

Code

MD5
ac7b5624fc042ab44234b32b53c9e029
Sha1
bfea64e3805b1734bc8c314c9e63e7d9bed89e8a
Base64
8J+ZiQ==

استعمال کی مثالیں

Programming Languages

C:

char c = '\u1F649';
printf("%c\n", c);  // Output: 🙉

JavaScript:

const char = '\u1F649';
console.log(char);  // Output: 🙉

Java:

char c = '\u1F649';
System.out.println(c);  // Output: 🙉

JSON:

{"text": "\u1F649"}  // Value: 🙉

Python:

char = '\u1F649'
print(char)  # Output: 🙉

Perl:

my $char = "\x{1F649}";
print $char;  # Output: 🙉

PHP:

$char = "\x{1F649}";
echo $char;  // Output: 🙉

Ruby:

char = "\u{1F649}"
puts char  # Output: 🙉

Rust:

let c = '\u{1F649}';
println!("{}", c);  // Output: 🙉

Go:

char := '\u1F649'
fmt.Printf("%c\n", char)  // Output: 🙉

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F649";  /* Display: 🙉 */
}

HTML Decimal:

<p>HTML decimal: &#128585;</p>  <!-- Display: 🙉 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F649;</p>  <!-- Display: 🙉 -->

URL Encoding:

// 🙉 URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%99%89

Encodings

MD5:

ac7b5624fc042ab44234b32b53c9e029

SHA1:

bfea64e3805b1734bc8c314c9e63e7d9bed89e8a

Base64:

8J+ZiQ==