Unicode Finder

"鷷" U+9DF7(CJK UNIFIED IDEOGRAPH-9DF7)

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

Programming

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

Web

CSS
\009DF7
HtmlDecimal
鷷
HtmlHexadecimal
鷷
Url
%E9%B7%B7

Code

MD5
17885bd7756555604098b73ae774d3e6
Sha1
64d62b8105fcf46ffc57533c333056477bfbef40
Base64
6be3

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9DF7';
console.log(char);  // Output: 鷷

Java:

char c = '\u9DF7';
System.out.println(c);  // Output: 鷷

JSON:

{"text": "\u9DF7"}  // Value: 鷷

Python:

char = '\u9DF7'
print(char)  # Output: 鷷

Perl:

my $char = "\x{9DF7}";
print $char;  # Output: 鷷

PHP:

$char = "\x{9DF7}";
echo $char;  // Output: 鷷

Ruby:

char = "\u{9DF7}"
puts char  # Output: 鷷

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40439;</p>  <!-- Display: 鷷 -->

HTML Hexadecimal:

<p>HTML hex: &#x9DF7;</p>  <!-- Display: 鷷 -->

URL Encoding:

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

Encodings

MD5:

17885bd7756555604098b73ae774d3e6

SHA1:

64d62b8105fcf46ffc57533c333056477bfbef40

Base64:

6be3