Unicode Finder

"蛬" U+86EC(CJK UNIFIED IDEOGRAPH-86EC)

U+86EC
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-86EC

Programming

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

Web

CSS
\0086EC
HtmlDecimal
蛬
HtmlHexadecimal
蛬
Url
%E8%9B%AC

Code

MD5
54ed67a910d48f046d2758a2ab0bdf6a
Sha1
53c7cb993e73279e6482ddb1ae243a8196fc3388
Base64
6Jus

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u86EC';
console.log(char);  // Output: 蛬

Java:

char c = '\u86EC';
System.out.println(c);  // Output: 蛬

JSON:

{"text": "\u86EC"}  // Value: 蛬

Python:

char = '\u86EC'
print(char)  # Output: 蛬

Perl:

my $char = "\x{86EC}";
print $char;  # Output: 蛬

PHP:

$char = "\x{86EC}";
echo $char;  // Output: 蛬

Ruby:

char = "\u{86EC}"
puts char  # Output: 蛬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#34540;</p>  <!-- Display: 蛬 -->

HTML Hexadecimal:

<p>HTML hex: &#x86EC;</p>  <!-- Display: 蛬 -->

URL Encoding:

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

Encodings

MD5:

54ed67a910d48f046d2758a2ab0bdf6a

SHA1:

53c7cb993e73279e6482ddb1ae243a8196fc3388

Base64:

6Jus