Unicode Finder

"螬" U+87AC(CJK UNIFIED IDEOGRAPH-87AC)

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

Programming

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

Web

CSS
\0087AC
HtmlDecimal
螬
HtmlHexadecimal
螬
Url
%E8%9E%AC

Code

MD5
b43a376873e5545e96116ee46f0e1606
Sha1
53eb9db27142fab07bd052810eb85ef0b6032b08
Base64
6J6s

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u87AC';
console.log(char);  // Output: 螬

Java:

char c = '\u87AC';
System.out.println(c);  // Output: 螬

JSON:

{"text": "\u87AC"}  // Value: 螬

Python:

char = '\u87AC'
print(char)  # Output: 螬

Perl:

my $char = "\x{87AC}";
print $char;  # Output: 螬

PHP:

$char = "\x{87AC}";
echo $char;  // Output: 螬

Ruby:

char = "\u{87AC}"
puts char  # Output: 螬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#34732;</p>  <!-- Display: 螬 -->

HTML Hexadecimal:

<p>HTML hex: &#x87AC;</p>  <!-- Display: 螬 -->

URL Encoding:

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

Encodings

MD5:

b43a376873e5545e96116ee46f0e1606

SHA1:

53eb9db27142fab07bd052810eb85ef0b6032b08

Base64:

6J6s