Unicode Finder

"蝵" U+8775(CJK UNIFIED IDEOGRAPH-8775)

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

Programming

C
\u8775
JavaScript
\u8775
Java
\u8775
Json
\u8775
Python
\u8775
Perl
\x{8775}
PHP
\x{8775}
Ruby
\u{8775}
Rust
\u{8775}
Go
\u8775

Web

CSS
\008775
HtmlDecimal
蝵
HtmlHexadecimal
蝵
Url
%E8%9D%B5

Code

MD5
a7dea0c5e3e3bef6ccb4b93d8b4d3e15
Sha1
e3131de326563083e671502d3a80f83fe4f5b6c1
Base64
6J21

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8775';
console.log(char);  // Output: 蝵

Java:

char c = '\u8775';
System.out.println(c);  // Output: 蝵

JSON:

{"text": "\u8775"}  // Value: 蝵

Python:

char = '\u8775'
print(char)  # Output: 蝵

Perl:

my $char = "\x{8775}";
print $char;  # Output: 蝵

PHP:

$char = "\x{8775}";
echo $char;  // Output: 蝵

Ruby:

char = "\u{8775}"
puts char  # Output: 蝵

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008775";  /* Display: 蝵 */
}

HTML Decimal:

<p>HTML decimal: &#34677;</p>  <!-- Display: 蝵 -->

HTML Hexadecimal:

<p>HTML hex: &#x8775;</p>  <!-- Display: 蝵 -->

URL Encoding:

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

Encodings

MD5:

a7dea0c5e3e3bef6ccb4b93d8b4d3e15

SHA1:

e3131de326563083e671502d3a80f83fe4f5b6c1

Base64:

6J21