Unicode Finder

"蚳" U+86B3(CJK UNIFIED IDEOGRAPH-86B3)

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

Programming

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

Web

CSS
\0086B3
HtmlDecimal
蚳
HtmlHexadecimal
蚳
Url
%E8%9A%B3

Code

MD5
5be6da8479e5789aaea098dea91eb2d3
Sha1
88a74a55b134535fa8123abdf34a6bae3fd26077
Base64
6Jqz

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u86B3';
console.log(char);  // Output: 蚳

Java:

char c = '\u86B3';
System.out.println(c);  // Output: 蚳

JSON:

{"text": "\u86B3"}  // Value: 蚳

Python:

char = '\u86B3'
print(char)  # Output: 蚳

Perl:

my $char = "\x{86B3}";
print $char;  # Output: 蚳

PHP:

$char = "\x{86B3}";
echo $char;  // Output: 蚳

Ruby:

char = "\u{86B3}"
puts char  # Output: 蚳

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#34483;</p>  <!-- Display: 蚳 -->

HTML Hexadecimal:

<p>HTML hex: &#x86B3;</p>  <!-- Display: 蚳 -->

URL Encoding:

// 蚳 URL encoding
https://unicodefinder.com/search.php?query=%E8%9A%B3

Encodings

MD5:

5be6da8479e5789aaea098dea91eb2d3

SHA1:

88a74a55b134535fa8123abdf34a6bae3fd26077

Base64:

6Jqz