Unicode Finder

"蕐" U+8550(CJK UNIFIED IDEOGRAPH-8550)

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

Programming

C
\u8550
JavaScript
\u8550
Java
\u8550
Json
\u8550
Python
\u8550
Perl
\x{8550}
PHP
\x{8550}
Ruby
\u{8550}
Rust
\u{8550}
Go
\u8550

Web

CSS
\008550
HtmlDecimal
蕐
HtmlHexadecimal
蕐
Url
%E8%95%90

Code

MD5
cf1e6af238a41012e20f0ae7efe16946
Sha1
0c1dd4cac33a9e4d8e425c9a7b2360fae3b7f71f
Base64
6JWQ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8550';
console.log(char);  // Output: 蕐

Java:

char c = '\u8550';
System.out.println(c);  // Output: 蕐

JSON:

{"text": "\u8550"}  // Value: 蕐

Python:

char = '\u8550'
print(char)  # Output: 蕐

Perl:

my $char = "\x{8550}";
print $char;  # Output: 蕐

PHP:

$char = "\x{8550}";
echo $char;  // Output: 蕐

Ruby:

char = "\u{8550}"
puts char  # Output: 蕐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008550";  /* Display: 蕐 */
}

HTML Decimal:

<p>HTML decimal: &#34128;</p>  <!-- Display: 蕐 -->

HTML Hexadecimal:

<p>HTML hex: &#x8550;</p>  <!-- Display: 蕐 -->

URL Encoding:

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

Encodings

MD5:

cf1e6af238a41012e20f0ae7efe16946

SHA1:

0c1dd4cac33a9e4d8e425c9a7b2360fae3b7f71f

Base64:

6JWQ