Unicode Finder

"袭" U+88AD(CJK UNIFIED IDEOGRAPH-88AD)

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

Programming

C
\u88AD
JavaScript
\u88AD
Java
\u88AD
Json
\u88AD
Python
\u88AD
Perl
\x{88AD}
PHP
\x{88AD}
Ruby
\u{88AD}
Rust
\u{88AD}
Go
\u88AD

Web

CSS
\0088AD
HtmlDecimal
袭
HtmlHexadecimal
袭
Url
%E8%A2%AD

Code

MD5
76280f24a8bb9abdaad5757d8f7ffafa
Sha1
6544959646d72fc5a38f4fbbf0dc9561f70aa3f8
Base64
6KKt

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u88AD';
console.log(char);  // Output: 袭

Java:

char c = '\u88AD';
System.out.println(c);  // Output: 袭

JSON:

{"text": "\u88AD"}  // Value: 袭

Python:

char = '\u88AD'
print(char)  # Output: 袭

Perl:

my $char = "\x{88AD}";
print $char;  # Output: 袭

PHP:

$char = "\x{88AD}";
echo $char;  // Output: 袭

Ruby:

char = "\u{88AD}"
puts char  # Output: 袭

Rust:

let c = '\u{88AD}';
println!("{}", c);  // Output: 袭

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0088AD";  /* Display: 袭 */
}

HTML Decimal:

<p>HTML decimal: &#34989;</p>  <!-- Display: 袭 -->

HTML Hexadecimal:

<p>HTML hex: &#x88AD;</p>  <!-- Display: 袭 -->

URL Encoding:

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

Encodings

MD5:

76280f24a8bb9abdaad5757d8f7ffafa

SHA1:

6544959646d72fc5a38f4fbbf0dc9561f70aa3f8

Base64:

6KKt