Unicode Finder

"鷠" U+9DE0(CJK UNIFIED IDEOGRAPH-9DE0)

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

Programming

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

Web

CSS
\009DE0
HtmlDecimal
鷠
HtmlHexadecimal
鷠
Url
%E9%B7%A0

Code

MD5
49a399c3d709c6e6d7d0baad503dc51e
Sha1
20d588572f1a7e0cd6e7d8f0ca85d9cdd2eea4c9
Base64
6beg

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9DE0';
console.log(char);  // Output: 鷠

Java:

char c = '\u9DE0';
System.out.println(c);  // Output: 鷠

JSON:

{"text": "\u9DE0"}  // Value: 鷠

Python:

char = '\u9DE0'
print(char)  # Output: 鷠

Perl:

my $char = "\x{9DE0}";
print $char;  # Output: 鷠

PHP:

$char = "\x{9DE0}";
echo $char;  // Output: 鷠

Ruby:

char = "\u{9DE0}"
puts char  # Output: 鷠

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40416;</p>  <!-- Display: 鷠 -->

HTML Hexadecimal:

<p>HTML hex: &#x9DE0;</p>  <!-- Display: 鷠 -->

URL Encoding:

// 鷠 URL encoding
https://unicodefinder.com/search.php?query=%E9%B7%A0

Encodings

MD5:

49a399c3d709c6e6d7d0baad503dc51e

SHA1:

20d588572f1a7e0cd6e7d8f0ca85d9cdd2eea4c9

Base64:

6beg