Unicode Finder

"蟟" U+87DF(CJK UNIFIED IDEOGRAPH-87DF)

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

Programming

C
\u87DF
JavaScript
\u87DF
Java
\u87DF
Json
\u87DF
Python
\u87DF
Perl
\x{87DF}
PHP
\x{87DF}
Ruby
\u{87DF}
Rust
\u{87DF}
Go
\u87DF

Web

CSS
\0087DF
HtmlDecimal
蟟
HtmlHexadecimal
蟟
Url
%E8%9F%9F

Code

MD5
2765ed41771b1f7fd384948b366087f0
Sha1
457f37b2304ae3d1af59efbe7c4798c8669f0854
Base64
6J+f

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u87DF';
console.log(char);  // Output: 蟟

Java:

char c = '\u87DF';
System.out.println(c);  // Output: 蟟

JSON:

{"text": "\u87DF"}  // Value: 蟟

Python:

char = '\u87DF'
print(char)  # Output: 蟟

Perl:

my $char = "\x{87DF}";
print $char;  # Output: 蟟

PHP:

$char = "\x{87DF}";
echo $char;  // Output: 蟟

Ruby:

char = "\u{87DF}"
puts char  # Output: 蟟

Rust:

let c = '\u{87DF}';
println!("{}", c);  // Output: 蟟

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0087DF";  /* Display: 蟟 */
}

HTML Decimal:

<p>HTML decimal: &#34783;</p>  <!-- Display: 蟟 -->

HTML Hexadecimal:

<p>HTML hex: &#x87DF;</p>  <!-- Display: 蟟 -->

URL Encoding:

// 蟟 URL encoding
https://unicodefinder.com/search.php?query=%E8%9F%9F

Encodings

MD5:

2765ed41771b1f7fd384948b366087f0

SHA1:

457f37b2304ae3d1af59efbe7c4798c8669f0854

Base64:

6J+f