Unicode Finder

"蕗" U+8557(CJK UNIFIED IDEOGRAPH-8557)

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

Programming

C
\u8557
JavaScript
\u8557
Java
\u8557
Json
\u8557
Python
\u8557
Perl
\x{8557}
PHP
\x{8557}
Ruby
\u{8557}
Rust
\u{8557}
Go
\u8557

Web

CSS
\008557
HtmlDecimal
蕗
HtmlHexadecimal
蕗
Url
%E8%95%97

Code

MD5
789bb72755df1470d3f6f8e0d1a23c08
Sha1
88680668167f0b6ad202796acdccf17ad5723fa9
Base64
6JWX

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8557';
console.log(char);  // Output: 蕗

Java:

char c = '\u8557';
System.out.println(c);  // Output: 蕗

JSON:

{"text": "\u8557"}  // Value: 蕗

Python:

char = '\u8557'
print(char)  # Output: 蕗

Perl:

my $char = "\x{8557}";
print $char;  # Output: 蕗

PHP:

$char = "\x{8557}";
echo $char;  // Output: 蕗

Ruby:

char = "\u{8557}"
puts char  # Output: 蕗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008557";  /* Display: 蕗 */
}

HTML Decimal:

<p>HTML decimal: &#34135;</p>  <!-- Display: 蕗 -->

HTML Hexadecimal:

<p>HTML hex: &#x8557;</p>  <!-- Display: 蕗 -->

URL Encoding:

// 蕗 URL encoding
https://unicodefinder.com/search.php?query=%E8%95%97

Encodings

MD5:

789bb72755df1470d3f6f8e0d1a23c08

SHA1:

88680668167f0b6ad202796acdccf17ad5723fa9

Base64:

6JWX