Unicode Finder

"嚑" U+5691(CJK UNIFIED IDEOGRAPH-5691)

U+5691
Nome del Blocco
CJK Unified Ideographs
Nome
CJK UNIFIED IDEOGRAPH-5691

Programming

C
\u5691
JavaScript
\u5691
Java
\u5691
Json
\u5691
Python
\u5691
Perl
\x{5691}
PHP
\x{5691}
Ruby
\u{5691}
Rust
\u{5691}
Go
\u5691

Web

CSS
\005691
HtmlDecimal
嚑
HtmlHexadecimal
嚑
Url
%E5%9A%91

Code

MD5
c394901ef21621ae744d812374f31f32
Sha1
fe061a05d5216ef77d39796e702ee6938e938359
Base64
5ZqR

Esempi di Utilizzo

Programming Languages

C:

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

JavaScript:

const char = '\u5691';
console.log(char);  // Output: 嚑

Java:

char c = '\u5691';
System.out.println(c);  // Output: 嚑

JSON:

{"text": "\u5691"}  // Value: 嚑

Python:

char = '\u5691'
print(char)  # Output: 嚑

Perl:

my $char = "\x{5691}";
print $char;  # Output: 嚑

PHP:

$char = "\x{5691}";
echo $char;  // Output: 嚑

Ruby:

char = "\u{5691}"
puts char  # Output: 嚑

Rust:

let c = '\u{5691}';
println!("{}", c);  // Output: 嚑

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005691";  /* Display: 嚑 */
}

HTML Decimal:

<p>HTML decimal: &#22161;</p>  <!-- Display: 嚑 -->

HTML Hexadecimal:

<p>HTML hex: &#x5691;</p>  <!-- Display: 嚑 -->

URL Encoding:

// 嚑 URL encoding
https://unicodefinder.com/search.php?query=%E5%9A%91

Encodings

MD5:

c394901ef21621ae744d812374f31f32

SHA1:

fe061a05d5216ef77d39796e702ee6938e938359

Base64:

5ZqR