Unicode Finder

"釚" U+91DA(CJK UNIFIED IDEOGRAPH-91DA)

U+91DA
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-91DA

Programming

C
\u91DA
JavaScript
\u91DA
Java
\u91DA
Json
\u91DA
Python
\u91DA
Perl
\x{91DA}
PHP
\x{91DA}
Ruby
\u{91DA}
Rust
\u{91DA}
Go
\u91DA

Web

CSS
\0091DA
HtmlDecimal
釚
HtmlHexadecimal
釚
Url
%E9%87%9A

Code

MD5
5fc8d238f3ab14424b24e8205563658a
Sha1
b5187d916bd3b94d84a32eee57ee28a75a845734
Base64
6Yea

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u91DA';
console.log(char);  // Output: 釚

Java:

char c = '\u91DA';
System.out.println(c);  // Output: 釚

JSON:

{"text": "\u91DA"}  // Value: 釚

Python:

char = '\u91DA'
print(char)  # Output: 釚

Perl:

my $char = "\x{91DA}";
print $char;  # Output: 釚

PHP:

$char = "\x{91DA}";
echo $char;  // Output: 釚

Ruby:

char = "\u{91DA}"
puts char  # Output: 釚

Rust:

let c = '\u{91DA}';
println!("{}", c);  // Output: 釚

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0091DA";  /* Display: 釚 */
}

HTML Decimal:

<p>HTML decimal: &#37338;</p>  <!-- Display: 釚 -->

HTML Hexadecimal:

<p>HTML hex: &#x91DA;</p>  <!-- Display: 釚 -->

URL Encoding:

// 釚 URL encoding
https://unicodefinder.com/search.php?query=%E9%87%9A

Encodings

MD5:

5fc8d238f3ab14424b24e8205563658a

SHA1:

b5187d916bd3b94d84a32eee57ee28a75a845734

Base64:

6Yea