Unicode Finder

"儠" U+5120(CJK UNIFIED IDEOGRAPH-5120)

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

Programming

C
\u5120
JavaScript
\u5120
Java
\u5120
Json
\u5120
Python
\u5120
Perl
\x{5120}
PHP
\x{5120}
Ruby
\u{5120}
Rust
\u{5120}
Go
\u5120

Web

CSS
\005120
HtmlDecimal
儠
HtmlHexadecimal
儠
Url
%E5%84%A0

Code

MD5
1c9d7de8de9452f102b7a2226565e467
Sha1
2825fb84a45321afa005ec1efa93f3d0c510ce1a
Base64
5YSg

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5120';
console.log(char);  // Output: 儠

Java:

char c = '\u5120';
System.out.println(c);  // Output: 儠

JSON:

{"text": "\u5120"}  // Value: 儠

Python:

char = '\u5120'
print(char)  # Output: 儠

Perl:

my $char = "\x{5120}";
print $char;  # Output: 儠

PHP:

$char = "\x{5120}";
echo $char;  // Output: 儠

Ruby:

char = "\u{5120}"
puts char  # Output: 儠

Rust:

let c = '\u{5120}';
println!("{}", c);  // Output: 儠

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005120";  /* Display: 儠 */
}

HTML Decimal:

<p>HTML decimal: &#20768;</p>  <!-- Display: 儠 -->

HTML Hexadecimal:

<p>HTML hex: &#x5120;</p>  <!-- Display: 儠 -->

URL Encoding:

// 儠 URL encoding
https://unicodefinder.com/search.php?query=%E5%84%A0

Encodings

MD5:

1c9d7de8de9452f102b7a2226565e467

SHA1:

2825fb84a45321afa005ec1efa93f3d0c510ce1a

Base64:

5YSg