Unicode Finder

"吱" U+5431(CJK UNIFIED IDEOGRAPH-5431)

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

Programming

C
\u5431
JavaScript
\u5431
Java
\u5431
Json
\u5431
Python
\u5431
Perl
\x{5431}
PHP
\x{5431}
Ruby
\u{5431}
Rust
\u{5431}
Go
\u5431

Web

CSS
\005431
HtmlDecimal
吱
HtmlHexadecimal
吱
Url
%E5%90%B1

Code

MD5
ea664f237a4b4fcd5c4191197105f96a
Sha1
c9e1cd4e0e96f77f89faf37781bd1fcdfeba5fc5
Base64
5ZCx

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5431';
console.log(char);  // Output: 吱

Java:

char c = '\u5431';
System.out.println(c);  // Output: 吱

JSON:

{"text": "\u5431"}  // Value: 吱

Python:

char = '\u5431'
print(char)  # Output: 吱

Perl:

my $char = "\x{5431}";
print $char;  # Output: 吱

PHP:

$char = "\x{5431}";
echo $char;  // Output: 吱

Ruby:

char = "\u{5431}"
puts char  # Output: 吱

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005431";  /* Display: 吱 */
}

HTML Decimal:

<p>HTML decimal: &#21553;</p>  <!-- Display: 吱 -->

HTML Hexadecimal:

<p>HTML hex: &#x5431;</p>  <!-- Display: 吱 -->

URL Encoding:

// 吱 URL encoding
https://unicodefinder.com/search.php?query=%E5%90%B1

Encodings

MD5:

ea664f237a4b4fcd5c4191197105f96a

SHA1:

c9e1cd4e0e96f77f89faf37781bd1fcdfeba5fc5

Base64:

5ZCx