Unicode Finder

"袈" U+8888(CJK UNIFIED IDEOGRAPH-8888)

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

Programming

C
\u8888
JavaScript
\u8888
Java
\u8888
Json
\u8888
Python
\u8888
Perl
\x{8888}
PHP
\x{8888}
Ruby
\u{8888}
Rust
\u{8888}
Go
\u8888

Web

CSS
\008888
HtmlDecimal
袈
HtmlHexadecimal
袈
Url
%E8%A2%88

Code

MD5
531bb9dab3d154df6e3729fdc36e007e
Sha1
53b1d6ac0c394e173308911281c80f6e9a086c1c
Base64
6KKI

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8888';
console.log(char);  // Output: 袈

Java:

char c = '\u8888';
System.out.println(c);  // Output: 袈

JSON:

{"text": "\u8888"}  // Value: 袈

Python:

char = '\u8888'
print(char)  # Output: 袈

Perl:

my $char = "\x{8888}";
print $char;  # Output: 袈

PHP:

$char = "\x{8888}";
echo $char;  // Output: 袈

Ruby:

char = "\u{8888}"
puts char  # Output: 袈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008888";  /* Display: 袈 */
}

HTML Decimal:

<p>HTML decimal: &#34952;</p>  <!-- Display: 袈 -->

HTML Hexadecimal:

<p>HTML hex: &#x8888;</p>  <!-- Display: 袈 -->

URL Encoding:

// 袈 URL encoding
https://unicodefinder.com/search.php?query=%E8%A2%88

Encodings

MD5:

531bb9dab3d154df6e3729fdc36e007e

SHA1:

53b1d6ac0c394e173308911281c80f6e9a086c1c

Base64:

6KKI