Unicode Finder

"劈" U+5288(CJK UNIFIED IDEOGRAPH-5288)

U+5288
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-5288

Programming

C
\u5288
JavaScript
\u5288
Java
\u5288
Json
\u5288
Python
\u5288
Perl
\x{5288}
PHP
\x{5288}
Ruby
\u{5288}
Rust
\u{5288}
Go
\u5288

Web

CSS
\005288
HtmlDecimal
劈
HtmlHexadecimal
劈
Url
%E5%8A%88

Code

MD5
0091b959b06dfbc640d796e3d19f6f5f
Sha1
331d4b0d2c007d870ecf9b8fd04f379096c2477b
Base64
5YqI

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5288';
console.log(char);  // Output: 劈

Java:

char c = '\u5288';
System.out.println(c);  // Output: 劈

JSON:

{"text": "\u5288"}  // Value: 劈

Python:

char = '\u5288'
print(char)  # Output: 劈

Perl:

my $char = "\x{5288}";
print $char;  # Output: 劈

PHP:

$char = "\x{5288}";
echo $char;  // Output: 劈

Ruby:

char = "\u{5288}"
puts char  # Output: 劈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005288";  /* Display: 劈 */
}

HTML Decimal:

<p>HTML decimal: &#21128;</p>  <!-- Display: 劈 -->

HTML Hexadecimal:

<p>HTML hex: &#x5288;</p>  <!-- Display: 劈 -->

URL Encoding:

// 劈 URL encoding
https://unicodefinder.com/search.php?query=%E5%8A%88

Encodings

MD5:

0091b959b06dfbc640d796e3d19f6f5f

SHA1:

331d4b0d2c007d870ecf9b8fd04f379096c2477b

Base64:

5YqI