Unicode Finder

"螈" U+8788(CJK UNIFIED IDEOGRAPH-8788)

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

Programming

C
\u8788
JavaScript
\u8788
Java
\u8788
Json
\u8788
Python
\u8788
Perl
\x{8788}
PHP
\x{8788}
Ruby
\u{8788}
Rust
\u{8788}
Go
\u8788

Web

CSS
\008788
HtmlDecimal
螈
HtmlHexadecimal
螈
Url
%E8%9E%88

Code

MD5
8730446577065244206efd46f9e042e0
Sha1
99e15289ec98b7c2b434b4c7e9d78475cf19ceec
Base64
6J6I

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8788';
console.log(char);  // Output: 螈

Java:

char c = '\u8788';
System.out.println(c);  // Output: 螈

JSON:

{"text": "\u8788"}  // Value: 螈

Python:

char = '\u8788'
print(char)  # Output: 螈

Perl:

my $char = "\x{8788}";
print $char;  # Output: 螈

PHP:

$char = "\x{8788}";
echo $char;  // Output: 螈

Ruby:

char = "\u{8788}"
puts char  # Output: 螈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008788";  /* Display: 螈 */
}

HTML Decimal:

<p>HTML decimal: &#34696;</p>  <!-- Display: 螈 -->

HTML Hexadecimal:

<p>HTML hex: &#x8788;</p>  <!-- Display: 螈 -->

URL Encoding:

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

Encodings

MD5:

8730446577065244206efd46f9e042e0

SHA1:

99e15289ec98b7c2b434b4c7e9d78475cf19ceec

Base64:

6J6I