Unicode Finder

"蔆" U+8506(CJK UNIFIED IDEOGRAPH-8506)

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

Programming

C
\u8506
JavaScript
\u8506
Java
\u8506
Json
\u8506
Python
\u8506
Perl
\x{8506}
PHP
\x{8506}
Ruby
\u{8506}
Rust
\u{8506}
Go
\u8506

Web

CSS
\008506
HtmlDecimal
蔆
HtmlHexadecimal
蔆
Url
%E8%94%86

Code

MD5
a47314c041bc6736c65878ef1c69b04c
Sha1
4764c8e064af8341d3c2a166d8896ec597b34b11
Base64
6JSG

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8506';
console.log(char);  // Output: 蔆

Java:

char c = '\u8506';
System.out.println(c);  // Output: 蔆

JSON:

{"text": "\u8506"}  // Value: 蔆

Python:

char = '\u8506'
print(char)  # Output: 蔆

Perl:

my $char = "\x{8506}";
print $char;  # Output: 蔆

PHP:

$char = "\x{8506}";
echo $char;  // Output: 蔆

Ruby:

char = "\u{8506}"
puts char  # Output: 蔆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008506";  /* Display: 蔆 */
}

HTML Decimal:

<p>HTML decimal: &#34054;</p>  <!-- Display: 蔆 -->

HTML Hexadecimal:

<p>HTML hex: &#x8506;</p>  <!-- Display: 蔆 -->

URL Encoding:

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

Encodings

MD5:

a47314c041bc6736c65878ef1c69b04c

SHA1:

4764c8e064af8341d3c2a166d8896ec597b34b11

Base64:

6JSG