Unicode Finder

"釰" U+91F0(CJK UNIFIED IDEOGRAPH-91F0)

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

Programming

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

Web

CSS
\0091F0
HtmlDecimal
釰
HtmlHexadecimal
釰
Url
%E9%87%B0

Code

MD5
4e0eb7fdf4382c0b6261b5167c02b499
Sha1
fc5278ce2198b6d4558dd788a003c8ef68daf6e0
Base64
6Yew

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u91F0';
console.log(char);  // Output: 釰

Java:

char c = '\u91F0';
System.out.println(c);  // Output: 釰

JSON:

{"text": "\u91F0"}  // Value: 釰

Python:

char = '\u91F0'
print(char)  # Output: 釰

Perl:

my $char = "\x{91F0}";
print $char;  # Output: 釰

PHP:

$char = "\x{91F0}";
echo $char;  // Output: 釰

Ruby:

char = "\u{91F0}"
puts char  # Output: 釰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37360;</p>  <!-- Display: 釰 -->

HTML Hexadecimal:

<p>HTML hex: &#x91F0;</p>  <!-- Display: 釰 -->

URL Encoding:

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

Encodings

MD5:

4e0eb7fdf4382c0b6261b5167c02b499

SHA1:

fc5278ce2198b6d4558dd788a003c8ef68daf6e0

Base64:

6Yew