Unicode Finder

"黃" U+9EC3(CJK UNIFIED IDEOGRAPH-9EC3)

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

Programming

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

Web

CSS
\009EC3
HtmlDecimal
黃
HtmlHexadecimal
黃
Url
%E9%BB%83

Code

MD5
4d61c2ce1eaa035afb9f2ba66f4054cc
Sha1
6f96741c256274c2d7806b5a1a46780212f994ad
Base64
6buD

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9EC3';
console.log(char);  // Output: 黃

Java:

char c = '\u9EC3';
System.out.println(c);  // Output: 黃

JSON:

{"text": "\u9EC3"}  // Value: 黃

Python:

char = '\u9EC3'
print(char)  # Output: 黃

Perl:

my $char = "\x{9EC3}";
print $char;  # Output: 黃

PHP:

$char = "\x{9EC3}";
echo $char;  // Output: 黃

Ruby:

char = "\u{9EC3}"
puts char  # Output: 黃

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40643;</p>  <!-- Display: 黃 -->

HTML Hexadecimal:

<p>HTML hex: &#x9EC3;</p>  <!-- Display: 黃 -->

URL Encoding:

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

Encodings

MD5:

4d61c2ce1eaa035afb9f2ba66f4054cc

SHA1:

6f96741c256274c2d7806b5a1a46780212f994ad

Base64:

6buD