Unicode Finder

"儀" U+5100(CJK UNIFIED IDEOGRAPH-5100)

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

Programming

C
\u5100
JavaScript
\u5100
Java
\u5100
Json
\u5100
Python
\u5100
Perl
\x{5100}
PHP
\x{5100}
Ruby
\u{5100}
Rust
\u{5100}
Go
\u5100

Web

CSS
\005100
HtmlDecimal
儀
HtmlHexadecimal
儀
Url
%E5%84%80

Code

MD5
524f83afe6e61a2fc2ad576ac21a75d7
Sha1
32261fa9419dc6e9b8023cc216a58ef1ca347f4c
Base64
5YSA

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5100';
console.log(char);  // Output: 儀

Java:

char c = '\u5100';
System.out.println(c);  // Output: 儀

JSON:

{"text": "\u5100"}  // Value: 儀

Python:

char = '\u5100'
print(char)  # Output: 儀

Perl:

my $char = "\x{5100}";
print $char;  # Output: 儀

PHP:

$char = "\x{5100}";
echo $char;  // Output: 儀

Ruby:

char = "\u{5100}"
puts char  # Output: 儀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005100";  /* Display: 儀 */
}

HTML Decimal:

<p>HTML decimal: &#20736;</p>  <!-- Display: 儀 -->

HTML Hexadecimal:

<p>HTML hex: &#x5100;</p>  <!-- Display: 儀 -->

URL Encoding:

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

Encodings

MD5:

524f83afe6e61a2fc2ad576ac21a75d7

SHA1:

32261fa9419dc6e9b8023cc216a58ef1ca347f4c

Base64:

5YSA