Unicode Finder

"囟" U+56DF(CJK UNIFIED IDEOGRAPH-56DF)

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

Programming

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

Web

CSS
\0056DF
HtmlDecimal
囟
HtmlHexadecimal
囟
Url
%E5%9B%9F

Code

MD5
b276e6f0272b20598f4edc1445952617
Sha1
3778158fbab702fb5000f53d7096ee7f6c001b7c
Base64
5Zuf

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u56DF';
console.log(char);  // Output: 囟

Java:

char c = '\u56DF';
System.out.println(c);  // Output: 囟

JSON:

{"text": "\u56DF"}  // Value: 囟

Python:

char = '\u56DF'
print(char)  # Output: 囟

Perl:

my $char = "\x{56DF}";
print $char;  # Output: 囟

PHP:

$char = "\x{56DF}";
echo $char;  // Output: 囟

Ruby:

char = "\u{56DF}"
puts char  # Output: 囟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#22239;</p>  <!-- Display: 囟 -->

HTML Hexadecimal:

<p>HTML hex: &#x56DF;</p>  <!-- Display: 囟 -->

URL Encoding:

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

Encodings

MD5:

b276e6f0272b20598f4edc1445952617

SHA1:

3778158fbab702fb5000f53d7096ee7f6c001b7c

Base64:

5Zuf