Unicode Finder

"釓" U+91D3(CJK UNIFIED IDEOGRAPH-91D3)

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

Programming

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

Web

CSS
\0091D3
HtmlDecimal
釓
HtmlHexadecimal
釓
Url
%E9%87%93

Code

MD5
415a98330d6202dd4e245a956da48421
Sha1
8afb2cd81f0befd191118c73773aca9133061a68
Base64
6YeT

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u91D3';
console.log(char);  // Output: 釓

Java:

char c = '\u91D3';
System.out.println(c);  // Output: 釓

JSON:

{"text": "\u91D3"}  // Value: 釓

Python:

char = '\u91D3'
print(char)  # Output: 釓

Perl:

my $char = "\x{91D3}";
print $char;  # Output: 釓

PHP:

$char = "\x{91D3}";
echo $char;  // Output: 釓

Ruby:

char = "\u{91D3}"
puts char  # Output: 釓

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37331;</p>  <!-- Display: 釓 -->

HTML Hexadecimal:

<p>HTML hex: &#x91D3;</p>  <!-- Display: 釓 -->

URL Encoding:

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

Encodings

MD5:

415a98330d6202dd4e245a956da48421

SHA1:

8afb2cd81f0befd191118c73773aca9133061a68

Base64:

6YeT