Unicode Finder

"袘" U+8898(CJK UNIFIED IDEOGRAPH-8898)

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

Programming

C
\u8898
JavaScript
\u8898
Java
\u8898
Json
\u8898
Python
\u8898
Perl
\x{8898}
PHP
\x{8898}
Ruby
\u{8898}
Rust
\u{8898}
Go
\u8898

Web

CSS
\008898
HtmlDecimal
袘
HtmlHexadecimal
袘
Url
%E8%A2%98

Code

MD5
0fa9f7bef658fd68a9d1f100620612d2
Sha1
8c2f172677472ccde1de71f08d128aa37bb0ed18
Base64
6KKY

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8898';
console.log(char);  // Output: 袘

Java:

char c = '\u8898';
System.out.println(c);  // Output: 袘

JSON:

{"text": "\u8898"}  // Value: 袘

Python:

char = '\u8898'
print(char)  # Output: 袘

Perl:

my $char = "\x{8898}";
print $char;  # Output: 袘

PHP:

$char = "\x{8898}";
echo $char;  // Output: 袘

Ruby:

char = "\u{8898}"
puts char  # Output: 袘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008898";  /* Display: 袘 */
}

HTML Decimal:

<p>HTML decimal: &#34968;</p>  <!-- Display: 袘 -->

HTML Hexadecimal:

<p>HTML hex: &#x8898;</p>  <!-- Display: 袘 -->

URL Encoding:

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

Encodings

MD5:

0fa9f7bef658fd68a9d1f100620612d2

SHA1:

8c2f172677472ccde1de71f08d128aa37bb0ed18

Base64:

6KKY