Unicode Finder

"黂" U+9EC2(CJK UNIFIED IDEOGRAPH-9EC2)

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

Programming

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

Web

CSS
\009EC2
HtmlDecimal
黂
HtmlHexadecimal
黂
Url
%E9%BB%82

Code

MD5
449c419ba64a71fbb7344b42415460e4
Sha1
a5c4f43516a05968dbc85c6926f8ce11ed41925c
Base64
6buC

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9EC2';
console.log(char);  // Output: 黂

Java:

char c = '\u9EC2';
System.out.println(c);  // Output: 黂

JSON:

{"text": "\u9EC2"}  // Value: 黂

Python:

char = '\u9EC2'
print(char)  # Output: 黂

Perl:

my $char = "\x{9EC2}";
print $char;  # Output: 黂

PHP:

$char = "\x{9EC2}";
echo $char;  // Output: 黂

Ruby:

char = "\u{9EC2}"
puts char  # Output: 黂

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40642;</p>  <!-- Display: 黂 -->

HTML Hexadecimal:

<p>HTML hex: &#x9EC2;</p>  <!-- Display: 黂 -->

URL Encoding:

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

Encodings

MD5:

449c419ba64a71fbb7344b42415460e4

SHA1:

a5c4f43516a05968dbc85c6926f8ce11ed41925c

Base64:

6buC