Unicode Finder

"黀" U+9EC0(CJK UNIFIED IDEOGRAPH-9EC0)

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

Programming

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

Web

CSS
\009EC0
HtmlDecimal
黀
HtmlHexadecimal
黀
Url
%E9%BB%80

Code

MD5
22eb644a23bbd7034a1b2a69322cc04a
Sha1
a77009d48f91ed5763f2439c6c20d2e4de07164d
Base64
6buA

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9EC0';
console.log(char);  // Output: 黀

Java:

char c = '\u9EC0';
System.out.println(c);  // Output: 黀

JSON:

{"text": "\u9EC0"}  // Value: 黀

Python:

char = '\u9EC0'
print(char)  # Output: 黀

Perl:

my $char = "\x{9EC0}";
print $char;  # Output: 黀

PHP:

$char = "\x{9EC0}";
echo $char;  // Output: 黀

Ruby:

char = "\u{9EC0}"
puts char  # Output: 黀

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40640;</p>  <!-- Display: 黀 -->

HTML Hexadecimal:

<p>HTML hex: &#x9EC0;</p>  <!-- Display: 黀 -->

URL Encoding:

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

Encodings

MD5:

22eb644a23bbd7034a1b2a69322cc04a

SHA1:

a77009d48f91ed5763f2439c6c20d2e4de07164d

Base64:

6buA