Unicode Finder

"厖" U+5396(CJK UNIFIED IDEOGRAPH-5396)

U+5396
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-5396

Programming

C
\u5396
JavaScript
\u5396
Java
\u5396
Json
\u5396
Python
\u5396
Perl
\x{5396}
PHP
\x{5396}
Ruby
\u{5396}
Rust
\u{5396}
Go
\u5396

Web

CSS
\005396
HtmlDecimal
厖
HtmlHexadecimal
厖
Url
%E5%8E%96

Code

MD5
6a8002e48fe3e5968afc6cbadfd05279
Sha1
917f8c8094253b2b4536e3f8560e9757dfcc57f6
Base64
5Y6W

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5396';
console.log(char);  // Output: 厖

Java:

char c = '\u5396';
System.out.println(c);  // Output: 厖

JSON:

{"text": "\u5396"}  // Value: 厖

Python:

char = '\u5396'
print(char)  # Output: 厖

Perl:

my $char = "\x{5396}";
print $char;  # Output: 厖

PHP:

$char = "\x{5396}";
echo $char;  // Output: 厖

Ruby:

char = "\u{5396}"
puts char  # Output: 厖

Rust:

let c = '\u{5396}';
println!("{}", c);  // Output: 厖

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005396";  /* Display: 厖 */
}

HTML Decimal:

<p>HTML decimal: &#21398;</p>  <!-- Display: 厖 -->

HTML Hexadecimal:

<p>HTML hex: &#x5396;</p>  <!-- Display: 厖 -->

URL Encoding:

// 厖 URL encoding
https://unicodefinder.com/search.php?query=%E5%8E%96

Encodings

MD5:

6a8002e48fe3e5968afc6cbadfd05279

SHA1:

917f8c8094253b2b4536e3f8560e9757dfcc57f6

Base64:

5Y6W