Unicode Finder

"蛖" U+86D6(CJK UNIFIED IDEOGRAPH-86D6)

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

Programming

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

Web

CSS
\0086D6
HtmlDecimal
蛖
HtmlHexadecimal
蛖
Url
%E8%9B%96

Code

MD5
168577e928d77e633ef1c68b6ab8cd11
Sha1
7aeb5938b6c436d740cc1c13afde86bc0375a400
Base64
6JuW

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u86D6';
console.log(char);  // Output: 蛖

Java:

char c = '\u86D6';
System.out.println(c);  // Output: 蛖

JSON:

{"text": "\u86D6"}  // Value: 蛖

Python:

char = '\u86D6'
print(char)  # Output: 蛖

Perl:

my $char = "\x{86D6}";
print $char;  # Output: 蛖

PHP:

$char = "\x{86D6}";
echo $char;  // Output: 蛖

Ruby:

char = "\u{86D6}"
puts char  # Output: 蛖

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#34518;</p>  <!-- Display: 蛖 -->

HTML Hexadecimal:

<p>HTML hex: &#x86D6;</p>  <!-- Display: 蛖 -->

URL Encoding:

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

Encodings

MD5:

168577e928d77e633ef1c68b6ab8cd11

SHA1:

7aeb5938b6c436d740cc1c13afde86bc0375a400

Base64:

6JuW