Unicode Finder

"鷂" U+9DC2(CJK UNIFIED IDEOGRAPH-9DC2)

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

Programming

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

Web

CSS
\009DC2
HtmlDecimal
鷂
HtmlHexadecimal
鷂
Url
%E9%B7%82

Code

MD5
febe8a07859ea86edbccf7f4c561f642
Sha1
de060fcad0c7cd8afb55fb9c845b59ef268b63e9
Base64
6beC

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9DC2';
console.log(char);  // Output: 鷂

Java:

char c = '\u9DC2';
System.out.println(c);  // Output: 鷂

JSON:

{"text": "\u9DC2"}  // Value: 鷂

Python:

char = '\u9DC2'
print(char)  # Output: 鷂

Perl:

my $char = "\x{9DC2}";
print $char;  # Output: 鷂

PHP:

$char = "\x{9DC2}";
echo $char;  // Output: 鷂

Ruby:

char = "\u{9DC2}"
puts char  # Output: 鷂

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40386;</p>  <!-- Display: 鷂 -->

HTML Hexadecimal:

<p>HTML hex: &#x9DC2;</p>  <!-- Display: 鷂 -->

URL Encoding:

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

Encodings

MD5:

febe8a07859ea86edbccf7f4c561f642

SHA1:

de060fcad0c7cd8afb55fb9c845b59ef268b63e9

Base64:

6beC