Unicode Finder

"蛜" U+86DC(CJK UNIFIED IDEOGRAPH-86DC)

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

Programming

C
\u86DC
JavaScript
\u86DC
Java
\u86DC
Json
\u86DC
Python
\u86DC
Perl
\x{86DC}
PHP
\x{86DC}
Ruby
\u{86DC}
Rust
\u{86DC}
Go
\u86DC

Web

CSS
\0086DC
HtmlDecimal
蛜
HtmlHexadecimal
蛜
Url
%E8%9B%9C

Code

MD5
5ea43288e98902ce49ecabac37547dda
Sha1
c3d7588b4384e1ac18e315282072269d5ff27740
Base64
6Juc

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u86DC';
console.log(char);  // Output: 蛜

Java:

char c = '\u86DC';
System.out.println(c);  // Output: 蛜

JSON:

{"text": "\u86DC"}  // Value: 蛜

Python:

char = '\u86DC'
print(char)  # Output: 蛜

Perl:

my $char = "\x{86DC}";
print $char;  # Output: 蛜

PHP:

$char = "\x{86DC}";
echo $char;  // Output: 蛜

Ruby:

char = "\u{86DC}"
puts char  # Output: 蛜

Rust:

let c = '\u{86DC}';
println!("{}", c);  // Output: 蛜

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0086DC";  /* Display: 蛜 */
}

HTML Decimal:

<p>HTML decimal: &#34524;</p>  <!-- Display: 蛜 -->

HTML Hexadecimal:

<p>HTML hex: &#x86DC;</p>  <!-- Display: 蛜 -->

URL Encoding:

// 蛜 URL encoding
https://unicodefinder.com/search.php?query=%E8%9B%9C

Encodings

MD5:

5ea43288e98902ce49ecabac37547dda

SHA1:

c3d7588b4384e1ac18e315282072269d5ff27740

Base64:

6Juc