Unicode Finder

"黝" U+9EDD(CJK UNIFIED IDEOGRAPH-9EDD)

U+9EDD
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-9EDD

Programming

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

Web

CSS
\009EDD
HtmlDecimal
黝
HtmlHexadecimal
黝
Url
%E9%BB%9D

Code

MD5
26a25012d5c684a01e74bcebfbadcc49
Sha1
fce3259dcd433077e9d6e92bbcef9c20d82d109d
Base64
6bud

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9EDD';
console.log(char);  // Output: 黝

Java:

char c = '\u9EDD';
System.out.println(c);  // Output: 黝

JSON:

{"text": "\u9EDD"}  // Value: 黝

Python:

char = '\u9EDD'
print(char)  # Output: 黝

Perl:

my $char = "\x{9EDD}";
print $char;  # Output: 黝

PHP:

$char = "\x{9EDD}";
echo $char;  // Output: 黝

Ruby:

char = "\u{9EDD}"
puts char  # Output: 黝

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40669;</p>  <!-- Display: 黝 -->

HTML Hexadecimal:

<p>HTML hex: &#x9EDD;</p>  <!-- Display: 黝 -->

URL Encoding:

// 黝 URL encoding
https://unicodefinder.com/search.php?query=%E9%BB%9D

Encodings

MD5:

26a25012d5c684a01e74bcebfbadcc49

SHA1:

fce3259dcd433077e9d6e92bbcef9c20d82d109d

Base64:

6bud