Unicode Finder

"鴰" U+9D30(CJK UNIFIED IDEOGRAPH-9D30)

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

Programming

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

Web

CSS
\009D30
HtmlDecimal
鴰
HtmlHexadecimal
鴰
Url
%E9%B4%B0

Code

MD5
c35bc1e5f75ba769a1775b7c525015f9
Sha1
39538502a2bb639dd3027dab25af564d34c0df06
Base64
6bSw

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9D30';
console.log(char);  // Output: 鴰

Java:

char c = '\u9D30';
System.out.println(c);  // Output: 鴰

JSON:

{"text": "\u9D30"}  // Value: 鴰

Python:

char = '\u9D30'
print(char)  # Output: 鴰

Perl:

my $char = "\x{9D30}";
print $char;  # Output: 鴰

PHP:

$char = "\x{9D30}";
echo $char;  // Output: 鴰

Ruby:

char = "\u{9D30}"
puts char  # Output: 鴰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40240;</p>  <!-- Display: 鴰 -->

HTML Hexadecimal:

<p>HTML hex: &#x9D30;</p>  <!-- Display: 鴰 -->

URL Encoding:

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

Encodings

MD5:

c35bc1e5f75ba769a1775b7c525015f9

SHA1:

39538502a2bb639dd3027dab25af564d34c0df06

Base64:

6bSw