Unicode Finder

"薑" U+8591(CJK UNIFIED IDEOGRAPH-8591)

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

Programming

C
\u8591
JavaScript
\u8591
Java
\u8591
Json
\u8591
Python
\u8591
Perl
\x{8591}
PHP
\x{8591}
Ruby
\u{8591}
Rust
\u{8591}
Go
\u8591

Web

CSS
\008591
HtmlDecimal
薑
HtmlHexadecimal
薑
Url
%E8%96%91

Code

MD5
a73c8e73134faf58c8a314b62fb4aae4
Sha1
e1619eee2a2b0e89878da4ea9a23323ea0ae1102
Base64
6JaR

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8591';
console.log(char);  // Output: 薑

Java:

char c = '\u8591';
System.out.println(c);  // Output: 薑

JSON:

{"text": "\u8591"}  // Value: 薑

Python:

char = '\u8591'
print(char)  # Output: 薑

Perl:

my $char = "\x{8591}";
print $char;  # Output: 薑

PHP:

$char = "\x{8591}";
echo $char;  // Output: 薑

Ruby:

char = "\u{8591}"
puts char  # Output: 薑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008591";  /* Display: 薑 */
}

HTML Decimal:

<p>HTML decimal: &#34193;</p>  <!-- Display: 薑 -->

HTML Hexadecimal:

<p>HTML hex: &#x8591;</p>  <!-- Display: 薑 -->

URL Encoding:

// 薑 URL encoding
https://unicodefinder.com/search.php?query=%E8%96%91

Encodings

MD5:

a73c8e73134faf58c8a314b62fb4aae4

SHA1:

e1619eee2a2b0e89878da4ea9a23323ea0ae1102

Base64:

6JaR