Unicode Finder

"鴊" U+9D0A(CJK UNIFIED IDEOGRAPH-9D0A)

U+9D0A
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-9D0A

Programming

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

Web

CSS
\009D0A
HtmlDecimal
鴊
HtmlHexadecimal
鴊
Url
%E9%B4%8A

Code

MD5
65c95af8abe70fdf6b3c3d0e8de29a31
Sha1
50cb872b022b56c6fa377ef525f036490fccc612
Base64
6bSK

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9D0A';
console.log(char);  // Output: 鴊

Java:

char c = '\u9D0A';
System.out.println(c);  // Output: 鴊

JSON:

{"text": "\u9D0A"}  // Value: 鴊

Python:

char = '\u9D0A'
print(char)  # Output: 鴊

Perl:

my $char = "\x{9D0A}";
print $char;  # Output: 鴊

PHP:

$char = "\x{9D0A}";
echo $char;  // Output: 鴊

Ruby:

char = "\u{9D0A}"
puts char  # Output: 鴊

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40202;</p>  <!-- Display: 鴊 -->

HTML Hexadecimal:

<p>HTML hex: &#x9D0A;</p>  <!-- Display: 鴊 -->

URL Encoding:

// 鴊 URL encoding
https://unicodefinder.com/search.php?query=%E9%B4%8A

Encodings

MD5:

65c95af8abe70fdf6b3c3d0e8de29a31

SHA1:

50cb872b022b56c6fa377ef525f036490fccc612

Base64:

6bSK