Unicode Finder

"蝓" U+8753(CJK UNIFIED IDEOGRAPH-8753)

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

Programming

C
\u8753
JavaScript
\u8753
Java
\u8753
Json
\u8753
Python
\u8753
Perl
\x{8753}
PHP
\x{8753}
Ruby
\u{8753}
Rust
\u{8753}
Go
\u8753

Web

CSS
\008753
HtmlDecimal
蝓
HtmlHexadecimal
蝓
Url
%E8%9D%93

Code

MD5
f739413c6c6c959d8f918ba68c8dac0c
Sha1
5b0dc9e2a86ef1e0780e4f751911b3c6da990e27
Base64
6J2T

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8753';
console.log(char);  // Output: 蝓

Java:

char c = '\u8753';
System.out.println(c);  // Output: 蝓

JSON:

{"text": "\u8753"}  // Value: 蝓

Python:

char = '\u8753'
print(char)  # Output: 蝓

Perl:

my $char = "\x{8753}";
print $char;  # Output: 蝓

PHP:

$char = "\x{8753}";
echo $char;  // Output: 蝓

Ruby:

char = "\u{8753}"
puts char  # Output: 蝓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008753";  /* Display: 蝓 */
}

HTML Decimal:

<p>HTML decimal: &#34643;</p>  <!-- Display: 蝓 -->

HTML Hexadecimal:

<p>HTML hex: &#x8753;</p>  <!-- Display: 蝓 -->

URL Encoding:

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

Encodings

MD5:

f739413c6c6c959d8f918ba68c8dac0c

SHA1:

5b0dc9e2a86ef1e0780e4f751911b3c6da990e27

Base64:

6J2T