Unicode Finder

"蠲" U+8832(CJK UNIFIED IDEOGRAPH-8832)

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

Programming

C
\u8832
JavaScript
\u8832
Java
\u8832
Json
\u8832
Python
\u8832
Perl
\x{8832}
PHP
\x{8832}
Ruby
\u{8832}
Rust
\u{8832}
Go
\u8832

Web

CSS
\008832
HtmlDecimal
蠲
HtmlHexadecimal
蠲
Url
%E8%A0%B2

Code

MD5
a298231489c20394de35092178ff9934
Sha1
ec060ce2f56cd0a08d87f6fa09f83ab670c00a8b
Base64
6KCy

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8832';
console.log(char);  // Output: 蠲

Java:

char c = '\u8832';
System.out.println(c);  // Output: 蠲

JSON:

{"text": "\u8832"}  // Value: 蠲

Python:

char = '\u8832'
print(char)  # Output: 蠲

Perl:

my $char = "\x{8832}";
print $char;  # Output: 蠲

PHP:

$char = "\x{8832}";
echo $char;  // Output: 蠲

Ruby:

char = "\u{8832}"
puts char  # Output: 蠲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008832";  /* Display: 蠲 */
}

HTML Decimal:

<p>HTML decimal: &#34866;</p>  <!-- Display: 蠲 -->

HTML Hexadecimal:

<p>HTML hex: &#x8832;</p>  <!-- Display: 蠲 -->

URL Encoding:

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

Encodings

MD5:

a298231489c20394de35092178ff9934

SHA1:

ec060ce2f56cd0a08d87f6fa09f83ab670c00a8b

Base64:

6KCy