Unicode Finder

"螁" U+8781(CJK UNIFIED IDEOGRAPH-8781)

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

Programming

C
\u8781
JavaScript
\u8781
Java
\u8781
Json
\u8781
Python
\u8781
Perl
\x{8781}
PHP
\x{8781}
Ruby
\u{8781}
Rust
\u{8781}
Go
\u8781

Web

CSS
\008781
HtmlDecimal
螁
HtmlHexadecimal
螁
Url
%E8%9E%81

Code

MD5
d6ce8c66d1534426277666b8d047f75f
Sha1
2a855813db943471c18990a6db3c4d2d6de5d4f5
Base64
6J6B

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8781';
console.log(char);  // Output: 螁

Java:

char c = '\u8781';
System.out.println(c);  // Output: 螁

JSON:

{"text": "\u8781"}  // Value: 螁

Python:

char = '\u8781'
print(char)  # Output: 螁

Perl:

my $char = "\x{8781}";
print $char;  # Output: 螁

PHP:

$char = "\x{8781}";
echo $char;  // Output: 螁

Ruby:

char = "\u{8781}"
puts char  # Output: 螁

Rust:

let c = '\u{8781}';
println!("{}", c);  // Output: 螁

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008781";  /* Display: 螁 */
}

HTML Decimal:

<p>HTML decimal: &#34689;</p>  <!-- Display: 螁 -->

HTML Hexadecimal:

<p>HTML hex: &#x8781;</p>  <!-- Display: 螁 -->

URL Encoding:

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

Encodings

MD5:

d6ce8c66d1534426277666b8d047f75f

SHA1:

2a855813db943471c18990a6db3c4d2d6de5d4f5

Base64:

6J6B