Unicode Finder

"鴈" U+9D08(CJK UNIFIED IDEOGRAPH-9D08)

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

Programming

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

Web

CSS
\009D08
HtmlDecimal
鴈
HtmlHexadecimal
鴈
Url
%E9%B4%88

Code

MD5
df1c735927cf4b1e0a7810a06c625a5c
Sha1
f575a292f6d31861cc2e20e822fe5e92d2bfe8dd
Base64
6bSI

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9D08';
console.log(char);  // Output: 鴈

Java:

char c = '\u9D08';
System.out.println(c);  // Output: 鴈

JSON:

{"text": "\u9D08"}  // Value: 鴈

Python:

char = '\u9D08'
print(char)  # Output: 鴈

Perl:

my $char = "\x{9D08}";
print $char;  # Output: 鴈

PHP:

$char = "\x{9D08}";
echo $char;  // Output: 鴈

Ruby:

char = "\u{9D08}"
puts char  # Output: 鴈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40200;</p>  <!-- Display: 鴈 -->

HTML Hexadecimal:

<p>HTML hex: &#x9D08;</p>  <!-- Display: 鴈 -->

URL Encoding:

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

Encodings

MD5:

df1c735927cf4b1e0a7810a06c625a5c

SHA1:

f575a292f6d31861cc2e20e822fe5e92d2bfe8dd

Base64:

6bSI