Unicode Finder

"囋" U+56CB(CJK UNIFIED IDEOGRAPH-56CB)

U+56CB
Nama Blok
CJK Unified Ideographs
Nama
CJK UNIFIED IDEOGRAPH-56CB

Programming

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

Web

CSS
\0056CB
HtmlDecimal
囋
HtmlHexadecimal
囋
Url
%E5%9B%8B

Code

MD5
94a94a7d71763dd97c0e5b786e47d06d
Sha1
8f99328e66061dd1ba29e984879a77a6aae07d47
Base64
5ZuL

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u56CB';
console.log(char);  // Output: 囋

Java:

char c = '\u56CB';
System.out.println(c);  // Output: 囋

JSON:

{"text": "\u56CB"}  // Value: 囋

Python:

char = '\u56CB'
print(char)  # Output: 囋

Perl:

my $char = "\x{56CB}";
print $char;  # Output: 囋

PHP:

$char = "\x{56CB}";
echo $char;  // Output: 囋

Ruby:

char = "\u{56CB}"
puts char  # Output: 囋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#22219;</p>  <!-- Display: 囋 -->

HTML Hexadecimal:

<p>HTML hex: &#x56CB;</p>  <!-- Display: 囋 -->

URL Encoding:

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

Encodings

MD5:

94a94a7d71763dd97c0e5b786e47d06d

SHA1:

8f99328e66061dd1ba29e984879a77a6aae07d47

Base64:

5ZuL