Unicode Finder

"袬" U+88AC(CJK UNIFIED IDEOGRAPH-88AC)

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

Programming

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

Web

CSS
\0088AC
HtmlDecimal
袬
HtmlHexadecimal
袬
Url
%E8%A2%AC

Code

MD5
96fed0226ba7cb32795dcaeed202e496
Sha1
828c83e03050705d0d6c339a703460b8d5f40293
Base64
6KKs

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u88AC';
console.log(char);  // Output: 袬

Java:

char c = '\u88AC';
System.out.println(c);  // Output: 袬

JSON:

{"text": "\u88AC"}  // Value: 袬

Python:

char = '\u88AC'
print(char)  # Output: 袬

Perl:

my $char = "\x{88AC}";
print $char;  # Output: 袬

PHP:

$char = "\x{88AC}";
echo $char;  // Output: 袬

Ruby:

char = "\u{88AC}"
puts char  # Output: 袬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#34988;</p>  <!-- Display: 袬 -->

HTML Hexadecimal:

<p>HTML hex: &#x88AC;</p>  <!-- Display: 袬 -->

URL Encoding:

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

Encodings

MD5:

96fed0226ba7cb32795dcaeed202e496

SHA1:

828c83e03050705d0d6c339a703460b8d5f40293

Base64:

6KKs