Unicode Finder

"嗯" U+55EF(CJK UNIFIED IDEOGRAPH-55EF)

U+55EF
Nume Bloc
CJK Unified Ideographs
Nume
CJK UNIFIED IDEOGRAPH-55EF

Programming

C
\u55EF
JavaScript
\u55EF
Java
\u55EF
Json
\u55EF
Python
\u55EF
Perl
\x{55EF}
PHP
\x{55EF}
Ruby
\u{55EF}
Rust
\u{55EF}
Go
\u55EF

Web

CSS
\0055EF
HtmlDecimal
嗯
HtmlHexadecimal
嗯
Url
%E5%97%AF

Code

MD5
e885cb9ce2561e0a2de874dd5ac63aca
Sha1
8e1571d03bef3e24d6e737db9e8c5f564de40b2f
Base64
5Zev

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u55EF';
console.log(char);  // Output: 嗯

Java:

char c = '\u55EF';
System.out.println(c);  // Output: 嗯

JSON:

{"text": "\u55EF"}  // Value: 嗯

Python:

char = '\u55EF'
print(char)  # Output: 嗯

Perl:

my $char = "\x{55EF}";
print $char;  # Output: 嗯

PHP:

$char = "\x{55EF}";
echo $char;  // Output: 嗯

Ruby:

char = "\u{55EF}"
puts char  # Output: 嗯

Rust:

let c = '\u{55EF}';
println!("{}", c);  // Output: 嗯

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0055EF";  /* Display: 嗯 */
}

HTML Decimal:

<p>HTML decimal: &#21999;</p>  <!-- Display: 嗯 -->

HTML Hexadecimal:

<p>HTML hex: &#x55EF;</p>  <!-- Display: 嗯 -->

URL Encoding:

// 嗯 URL encoding
https://unicodefinder.com/search.php?query=%E5%97%AF

Encodings

MD5:

e885cb9ce2561e0a2de874dd5ac63aca

SHA1:

8e1571d03bef3e24d6e737db9e8c5f564de40b2f

Base64:

5Zev