Unicode Finder

"囂" U+56C2(CJK UNIFIED IDEOGRAPH-56C2)

U+56C2
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-56C2

Programming

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

Web

CSS
\0056C2
HtmlDecimal
囂
HtmlHexadecimal
囂
Url
%E5%9B%82

Code

MD5
66eac7e846e19bf06ce32b554d11cfdc
Sha1
4036b5a1e35f644f16477cb88b9efab6974fc8c0
Base64
5ZuC

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u56C2';
console.log(char);  // Output: 囂

Java:

char c = '\u56C2';
System.out.println(c);  // Output: 囂

JSON:

{"text": "\u56C2"}  // Value: 囂

Python:

char = '\u56C2'
print(char)  # Output: 囂

Perl:

my $char = "\x{56C2}";
print $char;  # Output: 囂

PHP:

$char = "\x{56C2}";
echo $char;  // Output: 囂

Ruby:

char = "\u{56C2}"
puts char  # Output: 囂

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#22210;</p>  <!-- Display: 囂 -->

HTML Hexadecimal:

<p>HTML hex: &#x56C2;</p>  <!-- Display: 囂 -->

URL Encoding:

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

Encodings

MD5:

66eac7e846e19bf06ce32b554d11cfdc

SHA1:

4036b5a1e35f644f16477cb88b9efab6974fc8c0

Base64:

5ZuC