Unicode Finder

"蠥" U+8825(CJK UNIFIED IDEOGRAPH-8825)

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

Programming

C
\u8825
JavaScript
\u8825
Java
\u8825
Json
\u8825
Python
\u8825
Perl
\x{8825}
PHP
\x{8825}
Ruby
\u{8825}
Rust
\u{8825}
Go
\u8825

Web

CSS
\008825
HtmlDecimal
蠥
HtmlHexadecimal
蠥
Url
%E8%A0%A5

Code

MD5
4e62440565e3b448b2c7b3a497c003ae
Sha1
50a8ae6f7f449853e7766e2450b3169c5159619a
Base64
6KCl

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8825';
console.log(char);  // Output: 蠥

Java:

char c = '\u8825';
System.out.println(c);  // Output: 蠥

JSON:

{"text": "\u8825"}  // Value: 蠥

Python:

char = '\u8825'
print(char)  # Output: 蠥

Perl:

my $char = "\x{8825}";
print $char;  # Output: 蠥

PHP:

$char = "\x{8825}";
echo $char;  // Output: 蠥

Ruby:

char = "\u{8825}"
puts char  # Output: 蠥

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008825";  /* Display: 蠥 */
}

HTML Decimal:

<p>HTML decimal: &#34853;</p>  <!-- Display: 蠥 -->

HTML Hexadecimal:

<p>HTML hex: &#x8825;</p>  <!-- Display: 蠥 -->

URL Encoding:

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

Encodings

MD5:

4e62440565e3b448b2c7b3a497c003ae

SHA1:

50a8ae6f7f449853e7766e2450b3169c5159619a

Base64:

6KCl