Unicode Finder

"厫" U+53AB(CJK UNIFIED IDEOGRAPH-53AB)

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

Programming

C
\u53AB
JavaScript
\u53AB
Java
\u53AB
Json
\u53AB
Python
\u53AB
Perl
\x{53AB}
PHP
\x{53AB}
Ruby
\u{53AB}
Rust
\u{53AB}
Go
\u53AB

Web

CSS
\0053AB
HtmlDecimal
厫
HtmlHexadecimal
厫
Url
%E5%8E%AB

Code

MD5
1efb1b1c68231c73137c8559808879e7
Sha1
0f5710cdcce7ab7beaea5d6ef178ba1a7aed9206
Base64
5Y6r

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u53AB';
console.log(char);  // Output: 厫

Java:

char c = '\u53AB';
System.out.println(c);  // Output: 厫

JSON:

{"text": "\u53AB"}  // Value: 厫

Python:

char = '\u53AB'
print(char)  # Output: 厫

Perl:

my $char = "\x{53AB}";
print $char;  # Output: 厫

PHP:

$char = "\x{53AB}";
echo $char;  // Output: 厫

Ruby:

char = "\u{53AB}"
puts char  # Output: 厫

Rust:

let c = '\u{53AB}';
println!("{}", c);  // Output: 厫

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0053AB";  /* Display: 厫 */
}

HTML Decimal:

<p>HTML decimal: &#21419;</p>  <!-- Display: 厫 -->

HTML Hexadecimal:

<p>HTML hex: &#x53AB;</p>  <!-- Display: 厫 -->

URL Encoding:

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

Encodings

MD5:

1efb1b1c68231c73137c8559808879e7

SHA1:

0f5710cdcce7ab7beaea5d6ef178ba1a7aed9206

Base64:

5Y6r