Unicode Finder

"啣" U+5563(CJK UNIFIED IDEOGRAPH-5563)

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

Programming

C
\u5563
JavaScript
\u5563
Java
\u5563
Json
\u5563
Python
\u5563
Perl
\x{5563}
PHP
\x{5563}
Ruby
\u{5563}
Rust
\u{5563}
Go
\u5563

Web

CSS
\005563
HtmlDecimal
啣
HtmlHexadecimal
啣
Url
%E5%95%A3

Code

MD5
5e0b4c82ebedf7f51a079b38bac2df37
Sha1
8efc8068ccd0257fae6fbbe2a8632678f136f542
Base64
5ZWj

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5563';
console.log(char);  // Output: 啣

Java:

char c = '\u5563';
System.out.println(c);  // Output: 啣

JSON:

{"text": "\u5563"}  // Value: 啣

Python:

char = '\u5563'
print(char)  # Output: 啣

Perl:

my $char = "\x{5563}";
print $char;  # Output: 啣

PHP:

$char = "\x{5563}";
echo $char;  // Output: 啣

Ruby:

char = "\u{5563}"
puts char  # Output: 啣

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005563";  /* Display: 啣 */
}

HTML Decimal:

<p>HTML decimal: &#21859;</p>  <!-- Display: 啣 -->

HTML Hexadecimal:

<p>HTML hex: &#x5563;</p>  <!-- Display: 啣 -->

URL Encoding:

// 啣 URL encoding
https://unicodefinder.com/search.php?query=%E5%95%A3

Encodings

MD5:

5e0b4c82ebedf7f51a079b38bac2df37

SHA1:

8efc8068ccd0257fae6fbbe2a8632678f136f542

Base64:

5ZWj