Unicode Finder

"蠆" U+8806(CJK UNIFIED IDEOGRAPH-8806)

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

Programming

C
\u8806
JavaScript
\u8806
Java
\u8806
Json
\u8806
Python
\u8806
Perl
\x{8806}
PHP
\x{8806}
Ruby
\u{8806}
Rust
\u{8806}
Go
\u8806

Web

CSS
\008806
HtmlDecimal
蠆
HtmlHexadecimal
蠆
Url
%E8%A0%86

Code

MD5
7ccd9c979d69d84a99eb75e74de807fd
Sha1
b998cd5283a5d4ddb6140da13072c751c7ed47bf
Base64
6KCG

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8806';
console.log(char);  // Output: 蠆

Java:

char c = '\u8806';
System.out.println(c);  // Output: 蠆

JSON:

{"text": "\u8806"}  // Value: 蠆

Python:

char = '\u8806'
print(char)  # Output: 蠆

Perl:

my $char = "\x{8806}";
print $char;  # Output: 蠆

PHP:

$char = "\x{8806}";
echo $char;  // Output: 蠆

Ruby:

char = "\u{8806}"
puts char  # Output: 蠆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008806";  /* Display: 蠆 */
}

HTML Decimal:

<p>HTML decimal: &#34822;</p>  <!-- Display: 蠆 -->

HTML Hexadecimal:

<p>HTML hex: &#x8806;</p>  <!-- Display: 蠆 -->

URL Encoding:

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

Encodings

MD5:

7ccd9c979d69d84a99eb75e74de807fd

SHA1:

b998cd5283a5d4ddb6140da13072c751c7ed47bf

Base64:

6KCG