Unicode Finder

"螫" U+87AB(CJK UNIFIED IDEOGRAPH-87AB)

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

Programming

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

Web

CSS
\0087AB
HtmlDecimal
螫
HtmlHexadecimal
螫
Url
%E8%9E%AB

Code

MD5
b5885139ddb339560ea8944497974491
Sha1
e8250da6940212786fca825116e2efd59d8e2227
Base64
6J6r

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u87AB';
console.log(char);  // Output: 螫

Java:

char c = '\u87AB';
System.out.println(c);  // Output: 螫

JSON:

{"text": "\u87AB"}  // Value: 螫

Python:

char = '\u87AB'
print(char)  # Output: 螫

Perl:

my $char = "\x{87AB}";
print $char;  # Output: 螫

PHP:

$char = "\x{87AB}";
echo $char;  // Output: 螫

Ruby:

char = "\u{87AB}"
puts char  # Output: 螫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#34731;</p>  <!-- Display: 螫 -->

HTML Hexadecimal:

<p>HTML hex: &#x87AB;</p>  <!-- Display: 螫 -->

URL Encoding:

// 螫 URL encoding
https://unicodefinder.com/search.php?query=%E8%9E%AB

Encodings

MD5:

b5885139ddb339560ea8944497974491

SHA1:

e8250da6940212786fca825116e2efd59d8e2227

Base64:

6J6r