Unicode Finder

"蝹" U+8779(CJK UNIFIED IDEOGRAPH-8779)

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

Programming

C
\u8779
JavaScript
\u8779
Java
\u8779
Json
\u8779
Python
\u8779
Perl
\x{8779}
PHP
\x{8779}
Ruby
\u{8779}
Rust
\u{8779}
Go
\u8779

Web

CSS
\008779
HtmlDecimal
蝹
HtmlHexadecimal
蝹
Url
%E8%9D%B9

Code

MD5
1b941b26bd3ac4c8e2841487de38019d
Sha1
09ddb6780d4040dd70f6b1fdcd618197615a96d5
Base64
6J25

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8779';
console.log(char);  // Output: 蝹

Java:

char c = '\u8779';
System.out.println(c);  // Output: 蝹

JSON:

{"text": "\u8779"}  // Value: 蝹

Python:

char = '\u8779'
print(char)  # Output: 蝹

Perl:

my $char = "\x{8779}";
print $char;  # Output: 蝹

PHP:

$char = "\x{8779}";
echo $char;  // Output: 蝹

Ruby:

char = "\u{8779}"
puts char  # Output: 蝹

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008779";  /* Display: 蝹 */
}

HTML Decimal:

<p>HTML decimal: &#34681;</p>  <!-- Display: 蝹 -->

HTML Hexadecimal:

<p>HTML hex: &#x8779;</p>  <!-- Display: 蝹 -->

URL Encoding:

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

Encodings

MD5:

1b941b26bd3ac4c8e2841487de38019d

SHA1:

09ddb6780d4040dd70f6b1fdcd618197615a96d5

Base64:

6J25