Unicode Finder

"娛" U+5A1B(CJK UNIFIED IDEOGRAPH-5A1B)

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

Programming

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

Web

CSS
\005A1B
HtmlDecimal
娛
HtmlHexadecimal
娛
Url
%E5%A8%9B

Code

MD5
c3699ca116e408525ddf287fce4d6547
Sha1
f14034ec1c91e765131ae9f60e598c11447429a2
Base64
5aib

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5A1B';
console.log(char);  // Output: 娛

Java:

char c = '\u5A1B';
System.out.println(c);  // Output: 娛

JSON:

{"text": "\u5A1B"}  // Value: 娛

Python:

char = '\u5A1B'
print(char)  # Output: 娛

Perl:

my $char = "\x{5A1B}";
print $char;  # Output: 娛

PHP:

$char = "\x{5A1B}";
echo $char;  // Output: 娛

Ruby:

char = "\u{5A1B}"
puts char  # Output: 娛

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23067;</p>  <!-- Display: 娛 -->

HTML Hexadecimal:

<p>HTML hex: &#x5A1B;</p>  <!-- Display: 娛 -->

URL Encoding:

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

Encodings

MD5:

c3699ca116e408525ddf287fce4d6547

SHA1:

f14034ec1c91e765131ae9f60e598c11447429a2

Base64:

5aib