Unicode Finder

"蝐" U+8750(CJK UNIFIED IDEOGRAPH-8750)

U+8750
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-8750

Programming

C
\u8750
JavaScript
\u8750
Java
\u8750
Json
\u8750
Python
\u8750
Perl
\x{8750}
PHP
\x{8750}
Ruby
\u{8750}
Rust
\u{8750}
Go
\u8750

Web

CSS
\008750
HtmlDecimal
蝐
HtmlHexadecimal
蝐
Url
%E8%9D%90

Code

MD5
a2a437b1a39805c1aededb9217552d44
Sha1
8c168bad2aa481ac92fc3cc32b43a6f2f63b2c99
Base64
6J2Q

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8750';
console.log(char);  // Output: 蝐

Java:

char c = '\u8750';
System.out.println(c);  // Output: 蝐

JSON:

{"text": "\u8750"}  // Value: 蝐

Python:

char = '\u8750'
print(char)  # Output: 蝐

Perl:

my $char = "\x{8750}";
print $char;  # Output: 蝐

PHP:

$char = "\x{8750}";
echo $char;  // Output: 蝐

Ruby:

char = "\u{8750}"
puts char  # Output: 蝐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008750";  /* Display: 蝐 */
}

HTML Decimal:

<p>HTML decimal: &#34640;</p>  <!-- Display: 蝐 -->

HTML Hexadecimal:

<p>HTML hex: &#x8750;</p>  <!-- Display: 蝐 -->

URL Encoding:

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

Encodings

MD5:

a2a437b1a39805c1aededb9217552d44

SHA1:

8c168bad2aa481ac92fc3cc32b43a6f2f63b2c99

Base64:

6J2Q