Unicode Finder

"厭" U+53AD(CJK UNIFIED IDEOGRAPH-53AD)

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

Programming

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

Web

CSS
\0053AD
HtmlDecimal
厭
HtmlHexadecimal
厭
Url
%E5%8E%AD

Code

MD5
1c620e4176ef44e968b5845df9850590
Sha1
b2c1ba5b22a0f72eae234f5097a1d86a9c6da511
Base64
5Y6t

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u53AD';
console.log(char);  // Output: 厭

Java:

char c = '\u53AD';
System.out.println(c);  // Output: 厭

JSON:

{"text": "\u53AD"}  // Value: 厭

Python:

char = '\u53AD'
print(char)  # Output: 厭

Perl:

my $char = "\x{53AD}";
print $char;  # Output: 厭

PHP:

$char = "\x{53AD}";
echo $char;  // Output: 厭

Ruby:

char = "\u{53AD}"
puts char  # Output: 厭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21421;</p>  <!-- Display: 厭 -->

HTML Hexadecimal:

<p>HTML hex: &#x53AD;</p>  <!-- Display: 厭 -->

URL Encoding:

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

Encodings

MD5:

1c620e4176ef44e968b5845df9850590

SHA1:

b2c1ba5b22a0f72eae234f5097a1d86a9c6da511

Base64:

5Y6t