Unicode Finder

"蝜" U+875C(CJK UNIFIED IDEOGRAPH-875C)

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

Programming

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

Web

CSS
\00875C
HtmlDecimal
蝜
HtmlHexadecimal
蝜
Url
%E8%9D%9C

Code

MD5
3c7a1034abf7a7976ab2f5c778ddaab7
Sha1
aaec443a4c3fd8a079bfd6a2da12a3e22ec8b84e
Base64
6J2c

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u875C';
console.log(char);  // Output: 蝜

Java:

char c = '\u875C';
System.out.println(c);  // Output: 蝜

JSON:

{"text": "\u875C"}  // Value: 蝜

Python:

char = '\u875C'
print(char)  # Output: 蝜

Perl:

my $char = "\x{875C}";
print $char;  # Output: 蝜

PHP:

$char = "\x{875C}";
echo $char;  // Output: 蝜

Ruby:

char = "\u{875C}"
puts char  # Output: 蝜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#34652;</p>  <!-- Display: 蝜 -->

HTML Hexadecimal:

<p>HTML hex: &#x875C;</p>  <!-- Display: 蝜 -->

URL Encoding:

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

Encodings

MD5:

3c7a1034abf7a7976ab2f5c778ddaab7

SHA1:

aaec443a4c3fd8a079bfd6a2da12a3e22ec8b84e

Base64:

6J2c