Unicode Finder

"黅" U+9EC5(CJK UNIFIED IDEOGRAPH-9EC5)

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

Programming

C
\u9EC5
JavaScript
\u9EC5
Java
\u9EC5
Json
\u9EC5
Python
\u9EC5
Perl
\x{9EC5}
PHP
\x{9EC5}
Ruby
\u{9EC5}
Rust
\u{9EC5}
Go
\u9EC5

Web

CSS
\009EC5
HtmlDecimal
黅
HtmlHexadecimal
黅
Url
%E9%BB%85

Code

MD5
504851788944365d71d69aaf90c2a46d
Sha1
35ae17e60bde4742950d92dfb2c43b428694add7
Base64
6buF

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9EC5';
console.log(char);  // Output: 黅

Java:

char c = '\u9EC5';
System.out.println(c);  // Output: 黅

JSON:

{"text": "\u9EC5"}  // Value: 黅

Python:

char = '\u9EC5'
print(char)  # Output: 黅

Perl:

my $char = "\x{9EC5}";
print $char;  # Output: 黅

PHP:

$char = "\x{9EC5}";
echo $char;  // Output: 黅

Ruby:

char = "\u{9EC5}"
puts char  # Output: 黅

Rust:

let c = '\u{9EC5}';
println!("{}", c);  // Output: 黅

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009EC5";  /* Display: 黅 */
}

HTML Decimal:

<p>HTML decimal: &#40645;</p>  <!-- Display: 黅 -->

HTML Hexadecimal:

<p>HTML hex: &#x9EC5;</p>  <!-- Display: 黅 -->

URL Encoding:

// 黅 URL encoding
https://unicodefinder.com/search.php?query=%E9%BB%85

Encodings

MD5:

504851788944365d71d69aaf90c2a46d

SHA1:

35ae17e60bde4742950d92dfb2c43b428694add7

Base64:

6buF