Unicode Finder

"蕑" U+8551(CJK UNIFIED IDEOGRAPH-8551)

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

Programming

C
\u8551
JavaScript
\u8551
Java
\u8551
Json
\u8551
Python
\u8551
Perl
\x{8551}
PHP
\x{8551}
Ruby
\u{8551}
Rust
\u{8551}
Go
\u8551

Web

CSS
\008551
HtmlDecimal
蕑
HtmlHexadecimal
蕑
Url
%E8%95%91

Code

MD5
41abd7f8bd6ad84a0ae5ee4be143be09
Sha1
cfa3bf2b9ce4813c35aca392a5598350af57d985
Base64
6JWR

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8551';
console.log(char);  // Output: 蕑

Java:

char c = '\u8551';
System.out.println(c);  // Output: 蕑

JSON:

{"text": "\u8551"}  // Value: 蕑

Python:

char = '\u8551'
print(char)  # Output: 蕑

Perl:

my $char = "\x{8551}";
print $char;  # Output: 蕑

PHP:

$char = "\x{8551}";
echo $char;  // Output: 蕑

Ruby:

char = "\u{8551}"
puts char  # Output: 蕑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008551";  /* Display: 蕑 */
}

HTML Decimal:

<p>HTML decimal: &#34129;</p>  <!-- Display: 蕑 -->

HTML Hexadecimal:

<p>HTML hex: &#x8551;</p>  <!-- Display: 蕑 -->

URL Encoding:

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

Encodings

MD5:

41abd7f8bd6ad84a0ae5ee4be143be09

SHA1:

cfa3bf2b9ce4813c35aca392a5598350af57d985

Base64:

6JWR