Unicode Finder

"黋" U+9ECB(CJK UNIFIED IDEOGRAPH-9ECB)

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

Programming

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

Web

CSS
\009ECB
HtmlDecimal
黋
HtmlHexadecimal
黋
Url
%E9%BB%8B

Code

MD5
95c8a484e4291a84a485eec0720f44b9
Sha1
49e82212a23028bb3e47f4a77cd4ee77a0f39d44
Base64
6buL

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9ECB';
console.log(char);  // Output: 黋

Java:

char c = '\u9ECB';
System.out.println(c);  // Output: 黋

JSON:

{"text": "\u9ECB"}  // Value: 黋

Python:

char = '\u9ECB'
print(char)  # Output: 黋

Perl:

my $char = "\x{9ECB}";
print $char;  # Output: 黋

PHP:

$char = "\x{9ECB}";
echo $char;  // Output: 黋

Ruby:

char = "\u{9ECB}"
puts char  # Output: 黋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40651;</p>  <!-- Display: 黋 -->

HTML Hexadecimal:

<p>HTML hex: &#x9ECB;</p>  <!-- Display: 黋 -->

URL Encoding:

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

Encodings

MD5:

95c8a484e4291a84a485eec0720f44b9

SHA1:

49e82212a23028bb3e47f4a77cd4ee77a0f39d44

Base64:

6buL