Unicode Finder

"蔨" U+8528(CJK UNIFIED IDEOGRAPH-8528)

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

Programming

C
\u8528
JavaScript
\u8528
Java
\u8528
Json
\u8528
Python
\u8528
Perl
\x{8528}
PHP
\x{8528}
Ruby
\u{8528}
Rust
\u{8528}
Go
\u8528

Web

CSS
\008528
HtmlDecimal
蔨
HtmlHexadecimal
蔨
Url
%E8%94%A8

Code

MD5
4c2b8f2e12a73642fd1c1a117c95538e
Sha1
efb57044f779ce4472adc2cc499da93c0bce66b8
Base64
6JSo

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8528';
console.log(char);  // Output: 蔨

Java:

char c = '\u8528';
System.out.println(c);  // Output: 蔨

JSON:

{"text": "\u8528"}  // Value: 蔨

Python:

char = '\u8528'
print(char)  # Output: 蔨

Perl:

my $char = "\x{8528}";
print $char;  # Output: 蔨

PHP:

$char = "\x{8528}";
echo $char;  // Output: 蔨

Ruby:

char = "\u{8528}"
puts char  # Output: 蔨

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008528";  /* Display: 蔨 */
}

HTML Decimal:

<p>HTML decimal: &#34088;</p>  <!-- Display: 蔨 -->

HTML Hexadecimal:

<p>HTML hex: &#x8528;</p>  <!-- Display: 蔨 -->

URL Encoding:

// 蔨 URL encoding
https://unicodefinder.com/search.php?query=%E8%94%A8

Encodings

MD5:

4c2b8f2e12a73642fd1c1a117c95538e

SHA1:

efb57044f779ce4472adc2cc499da93c0bce66b8

Base64:

6JSo