Unicode Finder

"袓" U+8893(CJK UNIFIED IDEOGRAPH-8893)

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

Programming

C
\u8893
JavaScript
\u8893
Java
\u8893
Json
\u8893
Python
\u8893
Perl
\x{8893}
PHP
\x{8893}
Ruby
\u{8893}
Rust
\u{8893}
Go
\u8893

Web

CSS
\008893
HtmlDecimal
袓
HtmlHexadecimal
袓
Url
%E8%A2%93

Code

MD5
62491ec42579c81aff6f1fa57c9838ec
Sha1
ea9e45d35acd427ed8627f960ebfeca9a5396608
Base64
6KKT

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8893';
console.log(char);  // Output: 袓

Java:

char c = '\u8893';
System.out.println(c);  // Output: 袓

JSON:

{"text": "\u8893"}  // Value: 袓

Python:

char = '\u8893'
print(char)  # Output: 袓

Perl:

my $char = "\x{8893}";
print $char;  # Output: 袓

PHP:

$char = "\x{8893}";
echo $char;  // Output: 袓

Ruby:

char = "\u{8893}"
puts char  # Output: 袓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008893";  /* Display: 袓 */
}

HTML Decimal:

<p>HTML decimal: &#34963;</p>  <!-- Display: 袓 -->

HTML Hexadecimal:

<p>HTML hex: &#x8893;</p>  <!-- Display: 袓 -->

URL Encoding:

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

Encodings

MD5:

62491ec42579c81aff6f1fa57c9838ec

SHA1:

ea9e45d35acd427ed8627f960ebfeca9a5396608

Base64:

6KKT