Unicode Finder

"鷴" U+9DF4(CJK UNIFIED IDEOGRAPH-9DF4)

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

Programming

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

Web

CSS
\009DF4
HtmlDecimal
鷴
HtmlHexadecimal
鷴
Url
%E9%B7%B4

Code

MD5
2d91f8668012195df7b2ba4e96633c22
Sha1
bdf0669f64cb77857cd832f6ca6c88b84ea9e45e
Base64
6be0

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9DF4';
console.log(char);  // Output: 鷴

Java:

char c = '\u9DF4';
System.out.println(c);  // Output: 鷴

JSON:

{"text": "\u9DF4"}  // Value: 鷴

Python:

char = '\u9DF4'
print(char)  # Output: 鷴

Perl:

my $char = "\x{9DF4}";
print $char;  # Output: 鷴

PHP:

$char = "\x{9DF4}";
echo $char;  // Output: 鷴

Ruby:

char = "\u{9DF4}"
puts char  # Output: 鷴

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40436;</p>  <!-- Display: 鷴 -->

HTML Hexadecimal:

<p>HTML hex: &#x9DF4;</p>  <!-- Display: 鷴 -->

URL Encoding:

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

Encodings

MD5:

2d91f8668012195df7b2ba4e96633c22

SHA1:

bdf0669f64cb77857cd832f6ca6c88b84ea9e45e

Base64:

6be0