Unicode Finder

"囊" U+56CA(CJK UNIFIED IDEOGRAPH-56CA)

U+56CA
Nom du Bloc
CJK Unified Ideographs
Nom
CJK UNIFIED IDEOGRAPH-56CA

Programming

C
\u56CA
JavaScript
\u56CA
Java
\u56CA
Json
\u56CA
Python
\u56CA
Perl
\x{56CA}
PHP
\x{56CA}
Ruby
\u{56CA}
Rust
\u{56CA}
Go
\u56CA

Web

CSS
\0056CA
HtmlDecimal
囊
HtmlHexadecimal
囊
Url
%E5%9B%8A

Code

MD5
6b538a813d8ab88b1ce4192dd76882fc
Sha1
9259f95751272dbf90d54a871b397f9ea1db8ef3
Base64
5ZuK

Exemples d'Utilisation

Programming Languages

C:

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

JavaScript:

const char = '\u56CA';
console.log(char);  // Output: 囊

Java:

char c = '\u56CA';
System.out.println(c);  // Output: 囊

JSON:

{"text": "\u56CA"}  // Value: 囊

Python:

char = '\u56CA'
print(char)  # Output: 囊

Perl:

my $char = "\x{56CA}";
print $char;  # Output: 囊

PHP:

$char = "\x{56CA}";
echo $char;  // Output: 囊

Ruby:

char = "\u{56CA}"
puts char  # Output: 囊

Rust:

let c = '\u{56CA}';
println!("{}", c);  // Output: 囊

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0056CA";  /* Display: 囊 */
}

HTML Decimal:

<p>HTML decimal: &#22218;</p>  <!-- Display: 囊 -->

HTML Hexadecimal:

<p>HTML hex: &#x56CA;</p>  <!-- Display: 囊 -->

URL Encoding:

// 囊 URL encoding
https://unicodefinder.com/search.php?query=%E5%9B%8A

Encodings

MD5:

6b538a813d8ab88b1ce4192dd76882fc

SHA1:

9259f95751272dbf90d54a871b397f9ea1db8ef3

Base64:

5ZuK