Unicode Finder

"鵪" U+9D6A(CJK UNIFIED IDEOGRAPH-9D6A)

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

Programming

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

Web

CSS
\009D6A
HtmlDecimal
鵪
HtmlHexadecimal
鵪
Url
%E9%B5%AA

Code

MD5
8f84b69d179076503c9ca5b8460833ef
Sha1
4f945c08a3955551db22dcb5691b510d8cd8b772
Base64
6bWq

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9D6A';
console.log(char);  // Output: 鵪

Java:

char c = '\u9D6A';
System.out.println(c);  // Output: 鵪

JSON:

{"text": "\u9D6A"}  // Value: 鵪

Python:

char = '\u9D6A'
print(char)  # Output: 鵪

Perl:

my $char = "\x{9D6A}";
print $char;  # Output: 鵪

PHP:

$char = "\x{9D6A}";
echo $char;  // Output: 鵪

Ruby:

char = "\u{9D6A}"
puts char  # Output: 鵪

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40298;</p>  <!-- Display: 鵪 -->

HTML Hexadecimal:

<p>HTML hex: &#x9D6A;</p>  <!-- Display: 鵪 -->

URL Encoding:

// 鵪 URL encoding
https://unicodefinder.com/search.php?query=%E9%B5%AA

Encodings

MD5:

8f84b69d179076503c9ca5b8460833ef

SHA1:

4f945c08a3955551db22dcb5691b510d8cd8b772

Base64:

6bWq