Unicode Finder

"囏" U+56CF(CJK UNIFIED IDEOGRAPH-56CF)

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

Programming

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

Web

CSS
\0056CF
HtmlDecimal
囏
HtmlHexadecimal
囏
Url
%E5%9B%8F

Code

MD5
d21bf1122642c3f5cee44e4de7914c01
Sha1
b351056175bfa86e5c5bf70224d5a07aea3d5f87
Base64
5ZuP

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

Programming Languages

C:

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

JavaScript:

const char = '\u56CF';
console.log(char);  // Output: 囏

Java:

char c = '\u56CF';
System.out.println(c);  // Output: 囏

JSON:

{"text": "\u56CF"}  // Value: 囏

Python:

char = '\u56CF'
print(char)  # Output: 囏

Perl:

my $char = "\x{56CF}";
print $char;  # Output: 囏

PHP:

$char = "\x{56CF}";
echo $char;  // Output: 囏

Ruby:

char = "\u{56CF}"
puts char  # Output: 囏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#22223;</p>  <!-- Display: 囏 -->

HTML Hexadecimal:

<p>HTML hex: &#x56CF;</p>  <!-- Display: 囏 -->

URL Encoding:

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

Encodings

MD5:

d21bf1122642c3f5cee44e4de7914c01

SHA1:

b351056175bfa86e5c5bf70224d5a07aea3d5f87

Base64:

5ZuP