Unicode Finder

"鷰" U+9DF0(CJK UNIFIED IDEOGRAPH-9DF0)

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

Programming

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

Web

CSS
\009DF0
HtmlDecimal
鷰
HtmlHexadecimal
鷰
Url
%E9%B7%B0

Code

MD5
836fb4a122ea5cbeeaf25f57546a5347
Sha1
a43d094af43e1ed838ce9f2161c4dbb35993ed48
Base64
6bew

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9DF0';
console.log(char);  // Output: 鷰

Java:

char c = '\u9DF0';
System.out.println(c);  // Output: 鷰

JSON:

{"text": "\u9DF0"}  // Value: 鷰

Python:

char = '\u9DF0'
print(char)  # Output: 鷰

Perl:

my $char = "\x{9DF0}";
print $char;  # Output: 鷰

PHP:

$char = "\x{9DF0}";
echo $char;  // Output: 鷰

Ruby:

char = "\u{9DF0}"
puts char  # Output: 鷰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40432;</p>  <!-- Display: 鷰 -->

HTML Hexadecimal:

<p>HTML hex: &#x9DF0;</p>  <!-- Display: 鷰 -->

URL Encoding:

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

Encodings

MD5:

836fb4a122ea5cbeeaf25f57546a5347

SHA1:

a43d094af43e1ed838ce9f2161c4dbb35993ed48

Base64:

6bew