Unicode Finder

"黁" U+9EC1(CJK UNIFIED IDEOGRAPH-9EC1)

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

Programming

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

Web

CSS
\009EC1
HtmlDecimal
黁
HtmlHexadecimal
黁
Url
%E9%BB%81

Code

MD5
27dec8adff693d4fc7cd57ba6a81d5d1
Sha1
2ff0f9a70252408c32743968ae6a23c80d5aa4cb
Base64
6buB

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9EC1';
console.log(char);  // Output: 黁

Java:

char c = '\u9EC1';
System.out.println(c);  // Output: 黁

JSON:

{"text": "\u9EC1"}  // Value: 黁

Python:

char = '\u9EC1'
print(char)  # Output: 黁

Perl:

my $char = "\x{9EC1}";
print $char;  # Output: 黁

PHP:

$char = "\x{9EC1}";
echo $char;  // Output: 黁

Ruby:

char = "\u{9EC1}"
puts char  # Output: 黁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40641;</p>  <!-- Display: 黁 -->

HTML Hexadecimal:

<p>HTML hex: &#x9EC1;</p>  <!-- Display: 黁 -->

URL Encoding:

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

Encodings

MD5:

27dec8adff693d4fc7cd57ba6a81d5d1

SHA1:

2ff0f9a70252408c32743968ae6a23c80d5aa4cb

Base64:

6buB