Unicode Finder

"厌" U+538C(CJK UNIFIED IDEOGRAPH-538C)

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

Programming

C
\u538C
JavaScript
\u538C
Java
\u538C
Json
\u538C
Python
\u538C
Perl
\x{538C}
PHP
\x{538C}
Ruby
\u{538C}
Rust
\u{538C}
Go
\u538C

Web

CSS
\00538C
HtmlDecimal
厌
HtmlHexadecimal
厌
Url
%E5%8E%8C

Code

MD5
162d870af8469c89c2ca4d4f1b558447
Sha1
c8dea0dcff7d32cbb20d339174377b5bfa33101b
Base64
5Y6M

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u538C';
console.log(char);  // Output: 厌

Java:

char c = '\u538C';
System.out.println(c);  // Output: 厌

JSON:

{"text": "\u538C"}  // Value: 厌

Python:

char = '\u538C'
print(char)  # Output: 厌

Perl:

my $char = "\x{538C}";
print $char;  # Output: 厌

PHP:

$char = "\x{538C}";
echo $char;  // Output: 厌

Ruby:

char = "\u{538C}"
puts char  # Output: 厌

Rust:

let c = '\u{538C}';
println!("{}", c);  // Output: 厌

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00538C";  /* Display: 厌 */
}

HTML Decimal:

<p>HTML decimal: &#21388;</p>  <!-- Display: 厌 -->

HTML Hexadecimal:

<p>HTML hex: &#x538C;</p>  <!-- Display: 厌 -->

URL Encoding:

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

Encodings

MD5:

162d870af8469c89c2ca4d4f1b558447

SHA1:

c8dea0dcff7d32cbb20d339174377b5bfa33101b

Base64:

5Y6M