Unicode Finder

"蝞" U+875E(CJK UNIFIED IDEOGRAPH-875E)

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

Programming

C
\u875E
JavaScript
\u875E
Java
\u875E
Json
\u875E
Python
\u875E
Perl
\x{875E}
PHP
\x{875E}
Ruby
\u{875E}
Rust
\u{875E}
Go
\u875E

Web

CSS
\00875E
HtmlDecimal
蝞
HtmlHexadecimal
蝞
Url
%E8%9D%9E

Code

MD5
bec622070cf95697842ac67254c43689
Sha1
b1e60cf6322f5936e8d1df0f0daac22cd157a571
Base64
6J2e

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u875E';
console.log(char);  // Output: 蝞

Java:

char c = '\u875E';
System.out.println(c);  // Output: 蝞

JSON:

{"text": "\u875E"}  // Value: 蝞

Python:

char = '\u875E'
print(char)  # Output: 蝞

Perl:

my $char = "\x{875E}";
print $char;  # Output: 蝞

PHP:

$char = "\x{875E}";
echo $char;  // Output: 蝞

Ruby:

char = "\u{875E}"
puts char  # Output: 蝞

Rust:

let c = '\u{875E}';
println!("{}", c);  // Output: 蝞

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00875E";  /* Display: 蝞 */
}

HTML Decimal:

<p>HTML decimal: &#34654;</p>  <!-- Display: 蝞 -->

HTML Hexadecimal:

<p>HTML hex: &#x875E;</p>  <!-- Display: 蝞 -->

URL Encoding:

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

Encodings

MD5:

bec622070cf95697842ac67254c43689

SHA1:

b1e60cf6322f5936e8d1df0f0daac22cd157a571

Base64:

6J2e