Unicode Finder

"蛧" U+86E7(CJK UNIFIED IDEOGRAPH-86E7)

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

Programming

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

Web

CSS
\0086E7
HtmlDecimal
蛧
HtmlHexadecimal
蛧
Url
%E8%9B%A7

Code

MD5
2f320bb08b7b983e7651d24e70f35137
Sha1
94d21eee57c0721f2267e5ae016da8744255a3f7
Base64
6Jun

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u86E7';
console.log(char);  // Output: 蛧

Java:

char c = '\u86E7';
System.out.println(c);  // Output: 蛧

JSON:

{"text": "\u86E7"}  // Value: 蛧

Python:

char = '\u86E7'
print(char)  # Output: 蛧

Perl:

my $char = "\x{86E7}";
print $char;  # Output: 蛧

PHP:

$char = "\x{86E7}";
echo $char;  // Output: 蛧

Ruby:

char = "\u{86E7}"
puts char  # Output: 蛧

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#34535;</p>  <!-- Display: 蛧 -->

HTML Hexadecimal:

<p>HTML hex: &#x86E7;</p>  <!-- Display: 蛧 -->

URL Encoding:

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

Encodings

MD5:

2f320bb08b7b983e7651d24e70f35137

SHA1:

94d21eee57c0721f2267e5ae016da8744255a3f7

Base64:

6Jun