Unicode Finder

"釙" U+91D9(CJK UNIFIED IDEOGRAPH-91D9)

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

Programming

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

Web

CSS
\0091D9
HtmlDecimal
釙
HtmlHexadecimal
釙
Url
%E9%87%99

Code

MD5
655720b138473f80a28080f832e0303d
Sha1
e92fba63b4cee0c89317f118b34ced88d2d97c3f
Base64
6YeZ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u91D9';
console.log(char);  // Output: 釙

Java:

char c = '\u91D9';
System.out.println(c);  // Output: 釙

JSON:

{"text": "\u91D9"}  // Value: 釙

Python:

char = '\u91D9'
print(char)  # Output: 釙

Perl:

my $char = "\x{91D9}";
print $char;  # Output: 釙

PHP:

$char = "\x{91D9}";
echo $char;  // Output: 釙

Ruby:

char = "\u{91D9}"
puts char  # Output: 釙

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37337;</p>  <!-- Display: 釙 -->

HTML Hexadecimal:

<p>HTML hex: &#x91D9;</p>  <!-- Display: 釙 -->

URL Encoding:

// 釙 URL encoding
https://unicodefinder.com/search.php?query=%E9%87%99

Encodings

MD5:

655720b138473f80a28080f832e0303d

SHA1:

e92fba63b4cee0c89317f118b34ced88d2d97c3f

Base64:

6YeZ