Unicode Finder

"螂" U+8782(CJK UNIFIED IDEOGRAPH-8782)

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

Programming

C
\u8782
JavaScript
\u8782
Java
\u8782
Json
\u8782
Python
\u8782
Perl
\x{8782}
PHP
\x{8782}
Ruby
\u{8782}
Rust
\u{8782}
Go
\u8782

Web

CSS
\008782
HtmlDecimal
螂
HtmlHexadecimal
螂
Url
%E8%9E%82

Code

MD5
c5e9137d42626a7c1c16160d038e7130
Sha1
793ca69fd695f0e62cc602c686409c6867df370d
Base64
6J6C

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8782';
console.log(char);  // Output: 螂

Java:

char c = '\u8782';
System.out.println(c);  // Output: 螂

JSON:

{"text": "\u8782"}  // Value: 螂

Python:

char = '\u8782'
print(char)  # Output: 螂

Perl:

my $char = "\x{8782}";
print $char;  # Output: 螂

PHP:

$char = "\x{8782}";
echo $char;  // Output: 螂

Ruby:

char = "\u{8782}"
puts char  # Output: 螂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008782";  /* Display: 螂 */
}

HTML Decimal:

<p>HTML decimal: &#34690;</p>  <!-- Display: 螂 -->

HTML Hexadecimal:

<p>HTML hex: &#x8782;</p>  <!-- Display: 螂 -->

URL Encoding:

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

Encodings

MD5:

c5e9137d42626a7c1c16160d038e7130

SHA1:

793ca69fd695f0e62cc602c686409c6867df370d

Base64:

6J6C