Unicode Finder

"娟" U+5A1F(CJK UNIFIED IDEOGRAPH-5A1F)

U+5A1F
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-5A1F

Programming

C
\u5A1F
JavaScript
\u5A1F
Java
\u5A1F
Json
\u5A1F
Python
\u5A1F
Perl
\x{5A1F}
PHP
\x{5A1F}
Ruby
\u{5A1F}
Rust
\u{5A1F}
Go
\u5A1F

Web

CSS
\005A1F
HtmlDecimal
娟
HtmlHexadecimal
娟
Url
%E5%A8%9F

Code

MD5
37156185ef092100cae3ce9bcae00cbd
Sha1
2a1ecb32a2f2586747aff94fc54e806fd2a0ebd3
Base64
5aif

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5A1F';
console.log(char);  // Output: 娟

Java:

char c = '\u5A1F';
System.out.println(c);  // Output: 娟

JSON:

{"text": "\u5A1F"}  // Value: 娟

Python:

char = '\u5A1F'
print(char)  # Output: 娟

Perl:

my $char = "\x{5A1F}";
print $char;  # Output: 娟

PHP:

$char = "\x{5A1F}";
echo $char;  // Output: 娟

Ruby:

char = "\u{5A1F}"
puts char  # Output: 娟

Rust:

let c = '\u{5A1F}';
println!("{}", c);  // Output: 娟

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005A1F";  /* Display: 娟 */
}

HTML Decimal:

<p>HTML decimal: &#23071;</p>  <!-- Display: 娟 -->

HTML Hexadecimal:

<p>HTML hex: &#x5A1F;</p>  <!-- Display: 娟 -->

URL Encoding:

// 娟 URL encoding
https://unicodefinder.com/search.php?query=%E5%A8%9F

Encodings

MD5:

37156185ef092100cae3ce9bcae00cbd

SHA1:

2a1ecb32a2f2586747aff94fc54e806fd2a0ebd3

Base64:

5aif