Unicode Finder

"薄" U+8584(CJK UNIFIED IDEOGRAPH-8584)

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

Programming

C
\u8584
JavaScript
\u8584
Java
\u8584
Json
\u8584
Python
\u8584
Perl
\x{8584}
PHP
\x{8584}
Ruby
\u{8584}
Rust
\u{8584}
Go
\u8584

Web

CSS
\008584
HtmlDecimal
薄
HtmlHexadecimal
薄
Url
%E8%96%84

Code

MD5
ccfd0ae4c283ba269ebb0034c7c2b0b0
Sha1
fc04b183b0f619249e97787af720fffa176c681a
Base64
6JaE

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8584';
console.log(char);  // Output: 薄

Java:

char c = '\u8584';
System.out.println(c);  // Output: 薄

JSON:

{"text": "\u8584"}  // Value: 薄

Python:

char = '\u8584'
print(char)  # Output: 薄

Perl:

my $char = "\x{8584}";
print $char;  # Output: 薄

PHP:

$char = "\x{8584}";
echo $char;  // Output: 薄

Ruby:

char = "\u{8584}"
puts char  # Output: 薄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008584";  /* Display: 薄 */
}

HTML Decimal:

<p>HTML decimal: &#34180;</p>  <!-- Display: 薄 -->

HTML Hexadecimal:

<p>HTML hex: &#x8584;</p>  <!-- Display: 薄 -->

URL Encoding:

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

Encodings

MD5:

ccfd0ae4c283ba269ebb0034c7c2b0b0

SHA1:

fc04b183b0f619249e97787af720fffa176c681a

Base64:

6JaE