Unicode Finder

"薈" U+8588(CJK UNIFIED IDEOGRAPH-8588)

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

Programming

C
\u8588
JavaScript
\u8588
Java
\u8588
Json
\u8588
Python
\u8588
Perl
\x{8588}
PHP
\x{8588}
Ruby
\u{8588}
Rust
\u{8588}
Go
\u8588

Web

CSS
\008588
HtmlDecimal
薈
HtmlHexadecimal
薈
Url
%E8%96%88

Code

MD5
20a7ee4ee044432191378fbe39396d9d
Sha1
5ea2b9070f7d3236d37d5bf82935bfb4d7691222
Base64
6JaI

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8588';
console.log(char);  // Output: 薈

Java:

char c = '\u8588';
System.out.println(c);  // Output: 薈

JSON:

{"text": "\u8588"}  // Value: 薈

Python:

char = '\u8588'
print(char)  # Output: 薈

Perl:

my $char = "\x{8588}";
print $char;  # Output: 薈

PHP:

$char = "\x{8588}";
echo $char;  // Output: 薈

Ruby:

char = "\u{8588}"
puts char  # Output: 薈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008588";  /* Display: 薈 */
}

HTML Decimal:

<p>HTML decimal: &#34184;</p>  <!-- Display: 薈 -->

HTML Hexadecimal:

<p>HTML hex: &#x8588;</p>  <!-- Display: 薈 -->

URL Encoding:

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

Encodings

MD5:

20a7ee4ee044432191378fbe39396d9d

SHA1:

5ea2b9070f7d3236d37d5bf82935bfb4d7691222

Base64:

6JaI