Unicode Finder

"蕕" U+8555(CJK UNIFIED IDEOGRAPH-8555)

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

Programming

C
\u8555
JavaScript
\u8555
Java
\u8555
Json
\u8555
Python
\u8555
Perl
\x{8555}
PHP
\x{8555}
Ruby
\u{8555}
Rust
\u{8555}
Go
\u8555

Web

CSS
\008555
HtmlDecimal
蕕
HtmlHexadecimal
蕕
Url
%E8%95%95

Code

MD5
538ecfd0c88c46704bdcf6b45df296fe
Sha1
677bf7a258b80863255161f6c49e3eb3fc77434a
Base64
6JWV

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8555';
console.log(char);  // Output: 蕕

Java:

char c = '\u8555';
System.out.println(c);  // Output: 蕕

JSON:

{"text": "\u8555"}  // Value: 蕕

Python:

char = '\u8555'
print(char)  # Output: 蕕

Perl:

my $char = "\x{8555}";
print $char;  # Output: 蕕

PHP:

$char = "\x{8555}";
echo $char;  // Output: 蕕

Ruby:

char = "\u{8555}"
puts char  # Output: 蕕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008555";  /* Display: 蕕 */
}

HTML Decimal:

<p>HTML decimal: &#34133;</p>  <!-- Display: 蕕 -->

HTML Hexadecimal:

<p>HTML hex: &#x8555;</p>  <!-- Display: 蕕 -->

URL Encoding:

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

Encodings

MD5:

538ecfd0c88c46704bdcf6b45df296fe

SHA1:

677bf7a258b80863255161f6c49e3eb3fc77434a

Base64:

6JWV