Unicode Finder

"厒" U+5392(CJK UNIFIED IDEOGRAPH-5392)

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

Programming

C
\u5392
JavaScript
\u5392
Java
\u5392
Json
\u5392
Python
\u5392
Perl
\x{5392}
PHP
\x{5392}
Ruby
\u{5392}
Rust
\u{5392}
Go
\u5392

Web

CSS
\005392
HtmlDecimal
厒
HtmlHexadecimal
厒
Url
%E5%8E%92

Code

MD5
25c1185c989d353bae7fe0a72a27010c
Sha1
1841a4c13e6af9c1f772548e4ef4a5e411ad00fe
Base64
5Y6S

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5392';
console.log(char);  // Output: 厒

Java:

char c = '\u5392';
System.out.println(c);  // Output: 厒

JSON:

{"text": "\u5392"}  // Value: 厒

Python:

char = '\u5392'
print(char)  # Output: 厒

Perl:

my $char = "\x{5392}";
print $char;  # Output: 厒

PHP:

$char = "\x{5392}";
echo $char;  // Output: 厒

Ruby:

char = "\u{5392}"
puts char  # Output: 厒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005392";  /* Display: 厒 */
}

HTML Decimal:

<p>HTML decimal: &#21394;</p>  <!-- Display: 厒 -->

HTML Hexadecimal:

<p>HTML hex: &#x5392;</p>  <!-- Display: 厒 -->

URL Encoding:

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

Encodings

MD5:

25c1185c989d353bae7fe0a72a27010c

SHA1:

1841a4c13e6af9c1f772548e4ef4a5e411ad00fe

Base64:

5Y6S