Unicode Finder

"黎" U+9ECE(CJK UNIFIED IDEOGRAPH-9ECE)

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

Programming

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

Web

CSS
\009ECE
HtmlDecimal
黎
HtmlHexadecimal
黎
Url
%E9%BB%8E

Code

MD5
d51c7e4fa0a0b128d2ee1c8fa20da90f
Sha1
8721e01b941b81b91240cf6cebf5416a02f530a3
Base64
6buO

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9ECE';
console.log(char);  // Output: 黎

Java:

char c = '\u9ECE';
System.out.println(c);  // Output: 黎

JSON:

{"text": "\u9ECE"}  // Value: 黎

Python:

char = '\u9ECE'
print(char)  # Output: 黎

Perl:

my $char = "\x{9ECE}";
print $char;  # Output: 黎

PHP:

$char = "\x{9ECE}";
echo $char;  // Output: 黎

Ruby:

char = "\u{9ECE}"
puts char  # Output: 黎

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40654;</p>  <!-- Display: 黎 -->

HTML Hexadecimal:

<p>HTML hex: &#x9ECE;</p>  <!-- Display: 黎 -->

URL Encoding:

// 黎 URL encoding
https://unicodefinder.com/search.php?query=%E9%BB%8E

Encodings

MD5:

d51c7e4fa0a0b128d2ee1c8fa20da90f

SHA1:

8721e01b941b81b91240cf6cebf5416a02f530a3

Base64:

6buO