Unicode Finder

"鴀" U+9D00(CJK UNIFIED IDEOGRAPH-9D00)

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

Programming

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

Web

CSS
\009D00
HtmlDecimal
鴀
HtmlHexadecimal
鴀
Url
%E9%B4%80

Code

MD5
b497519809502b419907abc4ce4efcf0
Sha1
3794e26df11413f77fb676be2e51c0c784076b1a
Base64
6bSA

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9D00';
console.log(char);  // Output: 鴀

Java:

char c = '\u9D00';
System.out.println(c);  // Output: 鴀

JSON:

{"text": "\u9D00"}  // Value: 鴀

Python:

char = '\u9D00'
print(char)  # Output: 鴀

Perl:

my $char = "\x{9D00}";
print $char;  # Output: 鴀

PHP:

$char = "\x{9D00}";
echo $char;  // Output: 鴀

Ruby:

char = "\u{9D00}"
puts char  # Output: 鴀

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40192;</p>  <!-- Display: 鴀 -->

HTML Hexadecimal:

<p>HTML hex: &#x9D00;</p>  <!-- Display: 鴀 -->

URL Encoding:

// 鴀 URL encoding
https://unicodefinder.com/search.php?query=%E9%B4%80

Encodings

MD5:

b497519809502b419907abc4ce4efcf0

SHA1:

3794e26df11413f77fb676be2e51c0c784076b1a

Base64:

6bSA