Unicode Finder

"薔" U+8594(CJK UNIFIED IDEOGRAPH-8594)

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

Programming

C
\u8594
JavaScript
\u8594
Java
\u8594
Json
\u8594
Python
\u8594
Perl
\x{8594}
PHP
\x{8594}
Ruby
\u{8594}
Rust
\u{8594}
Go
\u8594

Web

CSS
\008594
HtmlDecimal
薔
HtmlHexadecimal
薔
Url
%E8%96%94

Code

MD5
5744cab95d9e2a180d219db30739542c
Sha1
36e45d3693d14dbd8121c5af002c7164088f3fdd
Base64
6JaU

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8594';
console.log(char);  // Output: 薔

Java:

char c = '\u8594';
System.out.println(c);  // Output: 薔

JSON:

{"text": "\u8594"}  // Value: 薔

Python:

char = '\u8594'
print(char)  # Output: 薔

Perl:

my $char = "\x{8594}";
print $char;  # Output: 薔

PHP:

$char = "\x{8594}";
echo $char;  // Output: 薔

Ruby:

char = "\u{8594}"
puts char  # Output: 薔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008594";  /* Display: 薔 */
}

HTML Decimal:

<p>HTML decimal: &#34196;</p>  <!-- Display: 薔 -->

HTML Hexadecimal:

<p>HTML hex: &#x8594;</p>  <!-- Display: 薔 -->

URL Encoding:

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

Encodings

MD5:

5744cab95d9e2a180d219db30739542c

SHA1:

36e45d3693d14dbd8121c5af002c7164088f3fdd

Base64:

6JaU