Unicode Finder

"蕘" U+8558(CJK UNIFIED IDEOGRAPH-8558)

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

Programming

C
\u8558
JavaScript
\u8558
Java
\u8558
Json
\u8558
Python
\u8558
Perl
\x{8558}
PHP
\x{8558}
Ruby
\u{8558}
Rust
\u{8558}
Go
\u8558

Web

CSS
\008558
HtmlDecimal
蕘
HtmlHexadecimal
蕘
Url
%E8%95%98

Code

MD5
01ac091b7890ba77274e8aaba8d60b91
Sha1
87862ea58f199b0b8187d1124b8229bd6dbf62d3
Base64
6JWY

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8558';
console.log(char);  // Output: 蕘

Java:

char c = '\u8558';
System.out.println(c);  // Output: 蕘

JSON:

{"text": "\u8558"}  // Value: 蕘

Python:

char = '\u8558'
print(char)  # Output: 蕘

Perl:

my $char = "\x{8558}";
print $char;  # Output: 蕘

PHP:

$char = "\x{8558}";
echo $char;  // Output: 蕘

Ruby:

char = "\u{8558}"
puts char  # Output: 蕘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008558";  /* Display: 蕘 */
}

HTML Decimal:

<p>HTML decimal: &#34136;</p>  <!-- Display: 蕘 -->

HTML Hexadecimal:

<p>HTML hex: &#x8558;</p>  <!-- Display: 蕘 -->

URL Encoding:

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

Encodings

MD5:

01ac091b7890ba77274e8aaba8d60b91

SHA1:

87862ea58f199b0b8187d1124b8229bd6dbf62d3

Base64:

6JWY