Unicode Finder

"鴞" U+9D1E(CJK UNIFIED IDEOGRAPH-9D1E)

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

Programming

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

Web

CSS
\009D1E
HtmlDecimal
鴞
HtmlHexadecimal
鴞
Url
%E9%B4%9E

Code

MD5
215cfec2cf0a5f7c85bce4831619de37
Sha1
361d2b6acc30096f2d973fc4e2f9ed5e36147915
Base64
6bSe

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9D1E';
console.log(char);  // Output: 鴞

Java:

char c = '\u9D1E';
System.out.println(c);  // Output: 鴞

JSON:

{"text": "\u9D1E"}  // Value: 鴞

Python:

char = '\u9D1E'
print(char)  # Output: 鴞

Perl:

my $char = "\x{9D1E}";
print $char;  # Output: 鴞

PHP:

$char = "\x{9D1E}";
echo $char;  // Output: 鴞

Ruby:

char = "\u{9D1E}"
puts char  # Output: 鴞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40222;</p>  <!-- Display: 鴞 -->

HTML Hexadecimal:

<p>HTML hex: &#x9D1E;</p>  <!-- Display: 鴞 -->

URL Encoding:

// 鴞 URL encoding
https://unicodefinder.com/search.php?query=%E9%B4%9E

Encodings

MD5:

215cfec2cf0a5f7c85bce4831619de37

SHA1:

361d2b6acc30096f2d973fc4e2f9ed5e36147915

Base64:

6bSe