Unicode Finder

"鳝" U+9CDD(CJK UNIFIED IDEOGRAPH-9CDD)

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

Programming

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

Web

CSS
\009CDD
HtmlDecimal
鳝
HtmlHexadecimal
鳝
Url
%E9%B3%9D

Code

MD5
2015dd079a50fc5211cb0d03bf7b47f0
Sha1
bbf55996446e88a9c31d1ef518401b53ff618834
Base64
6bOd

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9CDD';
console.log(char);  // Output: 鳝

Java:

char c = '\u9CDD';
System.out.println(c);  // Output: 鳝

JSON:

{"text": "\u9CDD"}  // Value: 鳝

Python:

char = '\u9CDD'
print(char)  # Output: 鳝

Perl:

my $char = "\x{9CDD}";
print $char;  # Output: 鳝

PHP:

$char = "\x{9CDD}";
echo $char;  // Output: 鳝

Ruby:

char = "\u{9CDD}"
puts char  # Output: 鳝

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40157;</p>  <!-- Display: 鳝 -->

HTML Hexadecimal:

<p>HTML hex: &#x9CDD;</p>  <!-- Display: 鳝 -->

URL Encoding:

// 鳝 URL encoding
https://unicodefinder.com/search.php?query=%E9%B3%9D

Encodings

MD5:

2015dd079a50fc5211cb0d03bf7b47f0

SHA1:

bbf55996446e88a9c31d1ef518401b53ff618834

Base64:

6bOd