Unicode Finder

"蛏" U+86CF(CJK UNIFIED IDEOGRAPH-86CF)

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

Programming

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

Web

CSS
\0086CF
HtmlDecimal
蛏
HtmlHexadecimal
蛏
Url
%E8%9B%8F

Code

MD5
66021b8961f30721351f1edbdfdcc27f
Sha1
d74da66e4be6687516731b8782a4419e1ac25254
Base64
6JuP

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u86CF';
console.log(char);  // Output: 蛏

Java:

char c = '\u86CF';
System.out.println(c);  // Output: 蛏

JSON:

{"text": "\u86CF"}  // Value: 蛏

Python:

char = '\u86CF'
print(char)  # Output: 蛏

Perl:

my $char = "\x{86CF}";
print $char;  # Output: 蛏

PHP:

$char = "\x{86CF}";
echo $char;  // Output: 蛏

Ruby:

char = "\u{86CF}"
puts char  # Output: 蛏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#34511;</p>  <!-- Display: 蛏 -->

HTML Hexadecimal:

<p>HTML hex: &#x86CF;</p>  <!-- Display: 蛏 -->

URL Encoding:

// 蛏 URL encoding
https://unicodefinder.com/search.php?query=%E8%9B%8F

Encodings

MD5:

66021b8961f30721351f1edbdfdcc27f

SHA1:

d74da66e4be6687516731b8782a4419e1ac25254

Base64:

6JuP