Unicode Finder

"鸭" U+9E2D(CJK UNIFIED IDEOGRAPH-9E2D)

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

Programming

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

Web

CSS
\009E2D
HtmlDecimal
鸭
HtmlHexadecimal
鸭
Url
%E9%B8%AD

Code

MD5
3840579d1bec42b98568ef11b6435676
Sha1
ee25a109396cf9ff9cf08b215d93ec8f4a2482c4
Base64
6bit

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9E2D';
console.log(char);  // Output: 鸭

Java:

char c = '\u9E2D';
System.out.println(c);  // Output: 鸭

JSON:

{"text": "\u9E2D"}  // Value: 鸭

Python:

char = '\u9E2D'
print(char)  # Output: 鸭

Perl:

my $char = "\x{9E2D}";
print $char;  # Output: 鸭

PHP:

$char = "\x{9E2D}";
echo $char;  // Output: 鸭

Ruby:

char = "\u{9E2D}"
puts char  # Output: 鸭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40493;</p>  <!-- Display: 鸭 -->

HTML Hexadecimal:

<p>HTML hex: &#x9E2D;</p>  <!-- Display: 鸭 -->

URL Encoding:

// 鸭 URL encoding
https://unicodefinder.com/search.php?query=%E9%B8%AD

Encodings

MD5:

3840579d1bec42b98568ef11b6435676

SHA1:

ee25a109396cf9ff9cf08b215d93ec8f4a2482c4

Base64:

6bit