Unicode Finder

"囌" U+56CC(CJK UNIFIED IDEOGRAPH-56CC)

U+56CC
Название Блока
CJK Unified Ideographs
Название
CJK UNIFIED IDEOGRAPH-56CC

Programming

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

Web

CSS
\0056CC
HtmlDecimal
囌
HtmlHexadecimal
囌
Url
%E5%9B%8C

Code

MD5
06bbdecaf1a38d4963a1bcfc6d5850bb
Sha1
bf03f854fa86b7f10b8b182eec96afccd45546dc
Base64
5ZuM

Примеры Использования

Programming Languages

C:

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

JavaScript:

const char = '\u56CC';
console.log(char);  // Output: 囌

Java:

char c = '\u56CC';
System.out.println(c);  // Output: 囌

JSON:

{"text": "\u56CC"}  // Value: 囌

Python:

char = '\u56CC'
print(char)  # Output: 囌

Perl:

my $char = "\x{56CC}";
print $char;  # Output: 囌

PHP:

$char = "\x{56CC}";
echo $char;  // Output: 囌

Ruby:

char = "\u{56CC}"
puts char  # Output: 囌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#22220;</p>  <!-- Display: 囌 -->

HTML Hexadecimal:

<p>HTML hex: &#x56CC;</p>  <!-- Display: 囌 -->

URL Encoding:

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

Encodings

MD5:

06bbdecaf1a38d4963a1bcfc6d5850bb

SHA1:

bf03f854fa86b7f10b8b182eec96afccd45546dc

Base64:

5ZuM