Unicode Finder

"蔂" U+8502(CJK UNIFIED IDEOGRAPH-8502)

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

Programming

C
\u8502
JavaScript
\u8502
Java
\u8502
Json
\u8502
Python
\u8502
Perl
\x{8502}
PHP
\x{8502}
Ruby
\u{8502}
Rust
\u{8502}
Go
\u8502

Web

CSS
\008502
HtmlDecimal
蔂
HtmlHexadecimal
蔂
Url
%E8%94%82

Code

MD5
79fad2f1cde38ce6642cb43d327cc413
Sha1
18c0cf0cc4cf46a30b0208c39826646ee67d2a8c
Base64
6JSC

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8502';
console.log(char);  // Output: 蔂

Java:

char c = '\u8502';
System.out.println(c);  // Output: 蔂

JSON:

{"text": "\u8502"}  // Value: 蔂

Python:

char = '\u8502'
print(char)  # Output: 蔂

Perl:

my $char = "\x{8502}";
print $char;  # Output: 蔂

PHP:

$char = "\x{8502}";
echo $char;  // Output: 蔂

Ruby:

char = "\u{8502}"
puts char  # Output: 蔂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008502";  /* Display: 蔂 */
}

HTML Decimal:

<p>HTML decimal: &#34050;</p>  <!-- Display: 蔂 -->

HTML Hexadecimal:

<p>HTML hex: &#x8502;</p>  <!-- Display: 蔂 -->

URL Encoding:

// 蔂 URL encoding
https://unicodefinder.com/search.php?query=%E8%94%82

Encodings

MD5:

79fad2f1cde38ce6642cb43d327cc413

SHA1:

18c0cf0cc4cf46a30b0208c39826646ee67d2a8c

Base64:

6JSC