Unicode Finder

"鸱" U+9E31(CJK UNIFIED IDEOGRAPH-9E31)

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

Programming

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

Web

CSS
\009E31
HtmlDecimal
鸱
HtmlHexadecimal
鸱
Url
%E9%B8%B1

Code

MD5
23e83121fb6e096bb0bedc0ff1103459
Sha1
794c699e534860f06231a4a58a34d9cd011c3cd5
Base64
6bix

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9E31';
console.log(char);  // Output: 鸱

Java:

char c = '\u9E31';
System.out.println(c);  // Output: 鸱

JSON:

{"text": "\u9E31"}  // Value: 鸱

Python:

char = '\u9E31'
print(char)  # Output: 鸱

Perl:

my $char = "\x{9E31}";
print $char;  # Output: 鸱

PHP:

$char = "\x{9E31}";
echo $char;  // Output: 鸱

Ruby:

char = "\u{9E31}"
puts char  # Output: 鸱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40497;</p>  <!-- Display: 鸱 -->

HTML Hexadecimal:

<p>HTML hex: &#x9E31;</p>  <!-- Display: 鸱 -->

URL Encoding:

// 鸱 URL encoding
https://unicodefinder.com/search.php?query=%E9%B8%B1

Encodings

MD5:

23e83121fb6e096bb0bedc0ff1103459

SHA1:

794c699e534860f06231a4a58a34d9cd011c3cd5

Base64:

6bix