Unicode Finder

"蜇" U+8707(CJK UNIFIED IDEOGRAPH-8707)

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

Programming

C
\u8707
JavaScript
\u8707
Java
\u8707
Json
\u8707
Python
\u8707
Perl
\x{8707}
PHP
\x{8707}
Ruby
\u{8707}
Rust
\u{8707}
Go
\u8707

Web

CSS
\008707
HtmlDecimal
蜇
HtmlHexadecimal
蜇
Url
%E8%9C%87

Code

MD5
780c6a4901bfe45f41fb6b7158adabda
Sha1
cc382a1aefbf5b1e77d7a333d0ddd53dd177fdc3
Base64
6JyH

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8707';
console.log(char);  // Output: 蜇

Java:

char c = '\u8707';
System.out.println(c);  // Output: 蜇

JSON:

{"text": "\u8707"}  // Value: 蜇

Python:

char = '\u8707'
print(char)  # Output: 蜇

Perl:

my $char = "\x{8707}";
print $char;  # Output: 蜇

PHP:

$char = "\x{8707}";
echo $char;  // Output: 蜇

Ruby:

char = "\u{8707}"
puts char  # Output: 蜇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008707";  /* Display: 蜇 */
}

HTML Decimal:

<p>HTML decimal: &#34567;</p>  <!-- Display: 蜇 -->

HTML Hexadecimal:

<p>HTML hex: &#x8707;</p>  <!-- Display: 蜇 -->

URL Encoding:

// 蜇 URL encoding
https://unicodefinder.com/search.php?query=%E8%9C%87

Encodings

MD5:

780c6a4901bfe45f41fb6b7158adabda

SHA1:

cc382a1aefbf5b1e77d7a333d0ddd53dd177fdc3

Base64:

6JyH