Unicode Finder

"鷡" U+9DE1(CJK UNIFIED IDEOGRAPH-9DE1)

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

Programming

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

Web

CSS
\009DE1
HtmlDecimal
鷡
HtmlHexadecimal
鷡
Url
%E9%B7%A1

Code

MD5
6117a7e6cdb304110de05ff9cc8303b4
Sha1
f49c2d242ab71144237a9dfb35eff596f10da93e
Base64
6beh

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9DE1';
console.log(char);  // Output: 鷡

Java:

char c = '\u9DE1';
System.out.println(c);  // Output: 鷡

JSON:

{"text": "\u9DE1"}  // Value: 鷡

Python:

char = '\u9DE1'
print(char)  # Output: 鷡

Perl:

my $char = "\x{9DE1}";
print $char;  # Output: 鷡

PHP:

$char = "\x{9DE1}";
echo $char;  // Output: 鷡

Ruby:

char = "\u{9DE1}"
puts char  # Output: 鷡

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40417;</p>  <!-- Display: 鷡 -->

HTML Hexadecimal:

<p>HTML hex: &#x9DE1;</p>  <!-- Display: 鷡 -->

URL Encoding:

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

Encodings

MD5:

6117a7e6cdb304110de05ff9cc8303b4

SHA1:

f49c2d242ab71144237a9dfb35eff596f10da93e

Base64:

6beh