Unicode Finder

"蝰" U+8770(CJK UNIFIED IDEOGRAPH-8770)

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

Programming

C
\u8770
JavaScript
\u8770
Java
\u8770
Json
\u8770
Python
\u8770
Perl
\x{8770}
PHP
\x{8770}
Ruby
\u{8770}
Rust
\u{8770}
Go
\u8770

Web

CSS
\008770
HtmlDecimal
蝰
HtmlHexadecimal
蝰
Url
%E8%9D%B0

Code

MD5
75264f99a77221429590f73894224086
Sha1
b7a229951488416c9f18a042d52ffd742f5cfd10
Base64
6J2w

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8770';
console.log(char);  // Output: 蝰

Java:

char c = '\u8770';
System.out.println(c);  // Output: 蝰

JSON:

{"text": "\u8770"}  // Value: 蝰

Python:

char = '\u8770'
print(char)  # Output: 蝰

Perl:

my $char = "\x{8770}";
print $char;  # Output: 蝰

PHP:

$char = "\x{8770}";
echo $char;  // Output: 蝰

Ruby:

char = "\u{8770}"
puts char  # Output: 蝰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008770";  /* Display: 蝰 */
}

HTML Decimal:

<p>HTML decimal: &#34672;</p>  <!-- Display: 蝰 -->

HTML Hexadecimal:

<p>HTML hex: &#x8770;</p>  <!-- Display: 蝰 -->

URL Encoding:

// 蝰 URL encoding
https://unicodefinder.com/search.php?query=%E8%9D%B0

Encodings

MD5:

75264f99a77221429590f73894224086

SHA1:

b7a229951488416c9f18a042d52ffd742f5cfd10

Base64:

6J2w