Unicode Finder

"黗" U+9ED7(CJK UNIFIED IDEOGRAPH-9ED7)

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

Programming

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

Web

CSS
\009ED7
HtmlDecimal
黗
HtmlHexadecimal
黗
Url
%E9%BB%97

Code

MD5
296eabe9b2d22ea31c16537b9396f274
Sha1
49979763fe3ea9c8e8ad7496b80ee051139870a9
Base64
6buX

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9ED7';
console.log(char);  // Output: 黗

Java:

char c = '\u9ED7';
System.out.println(c);  // Output: 黗

JSON:

{"text": "\u9ED7"}  // Value: 黗

Python:

char = '\u9ED7'
print(char)  # Output: 黗

Perl:

my $char = "\x{9ED7}";
print $char;  # Output: 黗

PHP:

$char = "\x{9ED7}";
echo $char;  // Output: 黗

Ruby:

char = "\u{9ED7}"
puts char  # Output: 黗

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40663;</p>  <!-- Display: 黗 -->

HTML Hexadecimal:

<p>HTML hex: &#x9ED7;</p>  <!-- Display: 黗 -->

URL Encoding:

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

Encodings

MD5:

296eabe9b2d22ea31c16537b9396f274

SHA1:

49979763fe3ea9c8e8ad7496b80ee051139870a9

Base64:

6buX