Unicode Finder

"蠬" U+882C(CJK UNIFIED IDEOGRAPH-882C)

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

Programming

C
\u882C
JavaScript
\u882C
Java
\u882C
Json
\u882C
Python
\u882C
Perl
\x{882C}
PHP
\x{882C}
Ruby
\u{882C}
Rust
\u{882C}
Go
\u882C

Web

CSS
\00882C
HtmlDecimal
蠬
HtmlHexadecimal
蠬
Url
%E8%A0%AC

Code

MD5
4589e6d57111a0443264f3bd6d2e8cbf
Sha1
42e61d6e241577f20f92ac66d94d7e898bfde891
Base64
6KCs

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u882C';
console.log(char);  // Output: 蠬

Java:

char c = '\u882C';
System.out.println(c);  // Output: 蠬

JSON:

{"text": "\u882C"}  // Value: 蠬

Python:

char = '\u882C'
print(char)  # Output: 蠬

Perl:

my $char = "\x{882C}";
print $char;  # Output: 蠬

PHP:

$char = "\x{882C}";
echo $char;  // Output: 蠬

Ruby:

char = "\u{882C}"
puts char  # Output: 蠬

Rust:

let c = '\u{882C}';
println!("{}", c);  // Output: 蠬

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00882C";  /* Display: 蠬 */
}

HTML Decimal:

<p>HTML decimal: &#34860;</p>  <!-- Display: 蠬 -->

HTML Hexadecimal:

<p>HTML hex: &#x882C;</p>  <!-- Display: 蠬 -->

URL Encoding:

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

Encodings

MD5:

4589e6d57111a0443264f3bd6d2e8cbf

SHA1:

42e61d6e241577f20f92ac66d94d7e898bfde891

Base64:

6KCs