Unicode Finder

"儁" U+5101(CJK UNIFIED IDEOGRAPH-5101)

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

Programming

C
\u5101
JavaScript
\u5101
Java
\u5101
Json
\u5101
Python
\u5101
Perl
\x{5101}
PHP
\x{5101}
Ruby
\u{5101}
Rust
\u{5101}
Go
\u5101

Web

CSS
\005101
HtmlDecimal
儁
HtmlHexadecimal
儁
Url
%E5%84%81

Code

MD5
e9a26125f66f9f4e0976cf5cd4d9191b
Sha1
2a5303b37293f3d8797119c2e68dad3c83823303
Base64
5YSB

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5101';
console.log(char);  // Output: 儁

Java:

char c = '\u5101';
System.out.println(c);  // Output: 儁

JSON:

{"text": "\u5101"}  // Value: 儁

Python:

char = '\u5101'
print(char)  # Output: 儁

Perl:

my $char = "\x{5101}";
print $char;  # Output: 儁

PHP:

$char = "\x{5101}";
echo $char;  // Output: 儁

Ruby:

char = "\u{5101}"
puts char  # Output: 儁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005101";  /* Display: 儁 */
}

HTML Decimal:

<p>HTML decimal: &#20737;</p>  <!-- Display: 儁 -->

HTML Hexadecimal:

<p>HTML hex: &#x5101;</p>  <!-- Display: 儁 -->

URL Encoding:

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

Encodings

MD5:

e9a26125f66f9f4e0976cf5cd4d9191b

SHA1:

2a5303b37293f3d8797119c2e68dad3c83823303

Base64:

5YSB