Unicode Finder

"蛱" U+86F1(CJK UNIFIED IDEOGRAPH-86F1)

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

Programming

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

Web

CSS
\0086F1
HtmlDecimal
蛱
HtmlHexadecimal
蛱
Url
%E8%9B%B1

Code

MD5
ee7e64905d6b951c16af9e46679e4d9d
Sha1
4a7f485b24d5126d754bcff7467682298fc1b52c
Base64
6Jux

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u86F1';
console.log(char);  // Output: 蛱

Java:

char c = '\u86F1';
System.out.println(c);  // Output: 蛱

JSON:

{"text": "\u86F1"}  // Value: 蛱

Python:

char = '\u86F1'
print(char)  # Output: 蛱

Perl:

my $char = "\x{86F1}";
print $char;  # Output: 蛱

PHP:

$char = "\x{86F1}";
echo $char;  // Output: 蛱

Ruby:

char = "\u{86F1}"
puts char  # Output: 蛱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#34545;</p>  <!-- Display: 蛱 -->

HTML Hexadecimal:

<p>HTML hex: &#x86F1;</p>  <!-- Display: 蛱 -->

URL Encoding:

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

Encodings

MD5:

ee7e64905d6b951c16af9e46679e4d9d

SHA1:

4a7f485b24d5126d754bcff7467682298fc1b52c

Base64:

6Jux