Unicode Finder

"蠯" U+882F(CJK UNIFIED IDEOGRAPH-882F)

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

Programming

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

Web

CSS
\00882F
HtmlDecimal
蠯
HtmlHexadecimal
蠯
Url
%E8%A0%AF

Code

MD5
7de495d5dd6ed476d9101438347879f8
Sha1
ad12a72210413808e5231790ad4417d84540eb88
Base64
6KCv

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u882F';
console.log(char);  // Output: 蠯

Java:

char c = '\u882F';
System.out.println(c);  // Output: 蠯

JSON:

{"text": "\u882F"}  // Value: 蠯

Python:

char = '\u882F'
print(char)  # Output: 蠯

Perl:

my $char = "\x{882F}";
print $char;  # Output: 蠯

PHP:

$char = "\x{882F}";
echo $char;  // Output: 蠯

Ruby:

char = "\u{882F}"
puts char  # Output: 蠯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#34863;</p>  <!-- Display: 蠯 -->

HTML Hexadecimal:

<p>HTML hex: &#x882F;</p>  <!-- Display: 蠯 -->

URL Encoding:

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

Encodings

MD5:

7de495d5dd6ed476d9101438347879f8

SHA1:

ad12a72210413808e5231790ad4417d84540eb88

Base64:

6KCv