Unicode Finder

"四" U+56DB(CJK UNIFIED IDEOGRAPH-56DB)

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

Programming

C
\u56DB
JavaScript
\u56DB
Java
\u56DB
Json
\u56DB
Python
\u56DB
Perl
\x{56DB}
PHP
\x{56DB}
Ruby
\u{56DB}
Rust
\u{56DB}
Go
\u56DB

Web

CSS
\0056DB
HtmlDecimal
四
HtmlHexadecimal
四
Url
%E5%9B%9B

Code

MD5
21716cf311071e8d339b611c8bdce9e4
Sha1
4f88740b348014a4eef0d2132f6cc2fced6f5b3d
Base64
5Zub

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u56DB';
console.log(char);  // Output: 四

Java:

char c = '\u56DB';
System.out.println(c);  // Output: 四

JSON:

{"text": "\u56DB"}  // Value: 四

Python:

char = '\u56DB'
print(char)  # Output: 四

Perl:

my $char = "\x{56DB}";
print $char;  # Output: 四

PHP:

$char = "\x{56DB}";
echo $char;  // Output: 四

Ruby:

char = "\u{56DB}"
puts char  # Output: 四

Rust:

let c = '\u{56DB}';
println!("{}", c);  // Output: 四

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0056DB";  /* Display: 四 */
}

HTML Decimal:

<p>HTML decimal: &#22235;</p>  <!-- Display: 四 -->

HTML Hexadecimal:

<p>HTML hex: &#x56DB;</p>  <!-- Display: 四 -->

URL Encoding:

// 四 URL encoding
https://unicodefinder.com/search.php?query=%E5%9B%9B

Encodings

MD5:

21716cf311071e8d339b611c8bdce9e4

SHA1:

4f88740b348014a4eef0d2132f6cc2fced6f5b3d

Base64:

5Zub