Unicode Finder

"啘" U+5558(CJK UNIFIED IDEOGRAPH-5558)

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

Programming

C
\u5558
JavaScript
\u5558
Java
\u5558
Json
\u5558
Python
\u5558
Perl
\x{5558}
PHP
\x{5558}
Ruby
\u{5558}
Rust
\u{5558}
Go
\u5558

Web

CSS
\005558
HtmlDecimal
啘
HtmlHexadecimal
啘
Url
%E5%95%98

Code

MD5
37ee9c414224ded7dc8d8eab3eff60cd
Sha1
6fed95706c67519aa6e365e9cb5428a0e4015b9e
Base64
5ZWY

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5558';
console.log(char);  // Output: 啘

Java:

char c = '\u5558';
System.out.println(c);  // Output: 啘

JSON:

{"text": "\u5558"}  // Value: 啘

Python:

char = '\u5558'
print(char)  # Output: 啘

Perl:

my $char = "\x{5558}";
print $char;  # Output: 啘

PHP:

$char = "\x{5558}";
echo $char;  // Output: 啘

Ruby:

char = "\u{5558}"
puts char  # Output: 啘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005558";  /* Display: 啘 */
}

HTML Decimal:

<p>HTML decimal: &#21848;</p>  <!-- Display: 啘 -->

HTML Hexadecimal:

<p>HTML hex: &#x5558;</p>  <!-- Display: 啘 -->

URL Encoding:

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

Encodings

MD5:

37ee9c414224ded7dc8d8eab3eff60cd

SHA1:

6fed95706c67519aa6e365e9cb5428a0e4015b9e

Base64:

5ZWY