Unicode Finder

"蕈" U+8548(CJK UNIFIED IDEOGRAPH-8548)

U+8548
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-8548

Programming

C
\u8548
JavaScript
\u8548
Java
\u8548
Json
\u8548
Python
\u8548
Perl
\x{8548}
PHP
\x{8548}
Ruby
\u{8548}
Rust
\u{8548}
Go
\u8548

Web

CSS
\008548
HtmlDecimal
蕈
HtmlHexadecimal
蕈
Url
%E8%95%88

Code

MD5
9c76a72178d1c8cb24a51c5fd28e9e93
Sha1
1e01a3fe2b335f064477fe0ba7dbcf72b32a14e8
Base64
6JWI

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8548';
console.log(char);  // Output: 蕈

Java:

char c = '\u8548';
System.out.println(c);  // Output: 蕈

JSON:

{"text": "\u8548"}  // Value: 蕈

Python:

char = '\u8548'
print(char)  # Output: 蕈

Perl:

my $char = "\x{8548}";
print $char;  # Output: 蕈

PHP:

$char = "\x{8548}";
echo $char;  // Output: 蕈

Ruby:

char = "\u{8548}"
puts char  # Output: 蕈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008548";  /* Display: 蕈 */
}

HTML Decimal:

<p>HTML decimal: &#34120;</p>  <!-- Display: 蕈 -->

HTML Hexadecimal:

<p>HTML hex: &#x8548;</p>  <!-- Display: 蕈 -->

URL Encoding:

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

Encodings

MD5:

9c76a72178d1c8cb24a51c5fd28e9e93

SHA1:

1e01a3fe2b335f064477fe0ba7dbcf72b32a14e8

Base64:

6JWI