Unicode Finder

"蟱" U+87F1(CJK UNIFIED IDEOGRAPH-87F1)

U+87F1
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-87F1

Programming

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

Web

CSS
\0087F1
HtmlDecimal
蟱
HtmlHexadecimal
蟱
Url
%E8%9F%B1

Code

MD5
1c3c0d461e1f6f2cca868e44fb51c89e
Sha1
c1d31db2817066dcde65151343584ff19c1c435c
Base64
6J+x

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u87F1';
console.log(char);  // Output: 蟱

Java:

char c = '\u87F1';
System.out.println(c);  // Output: 蟱

JSON:

{"text": "\u87F1"}  // Value: 蟱

Python:

char = '\u87F1'
print(char)  # Output: 蟱

Perl:

my $char = "\x{87F1}";
print $char;  # Output: 蟱

PHP:

$char = "\x{87F1}";
echo $char;  // Output: 蟱

Ruby:

char = "\u{87F1}"
puts char  # Output: 蟱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#34801;</p>  <!-- Display: 蟱 -->

HTML Hexadecimal:

<p>HTML hex: &#x87F1;</p>  <!-- Display: 蟱 -->

URL Encoding:

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

Encodings

MD5:

1c3c0d461e1f6f2cca868e44fb51c89e

SHA1:

c1d31db2817066dcde65151343584ff19c1c435c

Base64:

6J+x