Unicode Finder

"鷍" U+9DCD(CJK UNIFIED IDEOGRAPH-9DCD)

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

Programming

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

Web

CSS
\009DCD
HtmlDecimal
鷍
HtmlHexadecimal
鷍
Url
%E9%B7%8D

Code

MD5
1a4bf82c508eb94e5854e04b903a1375
Sha1
cccd6e644ddfab5c282ab25eabd60a8ed9a33628
Base64
6beN

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9DCD';
console.log(char);  // Output: 鷍

Java:

char c = '\u9DCD';
System.out.println(c);  // Output: 鷍

JSON:

{"text": "\u9DCD"}  // Value: 鷍

Python:

char = '\u9DCD'
print(char)  # Output: 鷍

Perl:

my $char = "\x{9DCD}";
print $char;  # Output: 鷍

PHP:

$char = "\x{9DCD}";
echo $char;  // Output: 鷍

Ruby:

char = "\u{9DCD}"
puts char  # Output: 鷍

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40397;</p>  <!-- Display: 鷍 -->

HTML Hexadecimal:

<p>HTML hex: &#x9DCD;</p>  <!-- Display: 鷍 -->

URL Encoding:

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

Encodings

MD5:

1a4bf82c508eb94e5854e04b903a1375

SHA1:

cccd6e644ddfab5c282ab25eabd60a8ed9a33628

Base64:

6beN