Unicode Finder

"儙" U+5119(CJK UNIFIED IDEOGRAPH-5119)

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

Programming

C
\u5119
JavaScript
\u5119
Java
\u5119
Json
\u5119
Python
\u5119
Perl
\x{5119}
PHP
\x{5119}
Ruby
\u{5119}
Rust
\u{5119}
Go
\u5119

Web

CSS
\005119
HtmlDecimal
儙
HtmlHexadecimal
儙
Url
%E5%84%99

Code

MD5
f3a52256d2f40d9def91e83616ae249b
Sha1
3988c4b832c4f622a51a8ee0a3e0494252f5ae10
Base64
5YSZ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5119';
console.log(char);  // Output: 儙

Java:

char c = '\u5119';
System.out.println(c);  // Output: 儙

JSON:

{"text": "\u5119"}  // Value: 儙

Python:

char = '\u5119'
print(char)  # Output: 儙

Perl:

my $char = "\x{5119}";
print $char;  # Output: 儙

PHP:

$char = "\x{5119}";
echo $char;  // Output: 儙

Ruby:

char = "\u{5119}"
puts char  # Output: 儙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005119";  /* Display: 儙 */
}

HTML Decimal:

<p>HTML decimal: &#20761;</p>  <!-- Display: 儙 -->

HTML Hexadecimal:

<p>HTML hex: &#x5119;</p>  <!-- Display: 儙 -->

URL Encoding:

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

Encodings

MD5:

f3a52256d2f40d9def91e83616ae249b

SHA1:

3988c4b832c4f622a51a8ee0a3e0494252f5ae10

Base64:

5YSZ