Unicode Finder

"釪" U+91EA(CJK UNIFIED IDEOGRAPH-91EA)

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

Programming

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

Web

CSS
\0091EA
HtmlDecimal
釪
HtmlHexadecimal
釪
Url
%E9%87%AA

Code

MD5
865531d1feffe82deebe6edcf904f4b6
Sha1
34fa372afcfb2ca5a0a4fedbc17310a39db6fac1
Base64
6Yeq

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u91EA';
console.log(char);  // Output: 釪

Java:

char c = '\u91EA';
System.out.println(c);  // Output: 釪

JSON:

{"text": "\u91EA"}  // Value: 釪

Python:

char = '\u91EA'
print(char)  # Output: 釪

Perl:

my $char = "\x{91EA}";
print $char;  # Output: 釪

PHP:

$char = "\x{91EA}";
echo $char;  // Output: 釪

Ruby:

char = "\u{91EA}"
puts char  # Output: 釪

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37354;</p>  <!-- Display: 釪 -->

HTML Hexadecimal:

<p>HTML hex: &#x91EA;</p>  <!-- Display: 釪 -->

URL Encoding:

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

Encodings

MD5:

865531d1feffe82deebe6edcf904f4b6

SHA1:

34fa372afcfb2ca5a0a4fedbc17310a39db6fac1

Base64:

6Yeq