Unicode Finder

"蔙" U+8519(CJK UNIFIED IDEOGRAPH-8519)

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

Programming

C
\u8519
JavaScript
\u8519
Java
\u8519
Json
\u8519
Python
\u8519
Perl
\x{8519}
PHP
\x{8519}
Ruby
\u{8519}
Rust
\u{8519}
Go
\u8519

Web

CSS
\008519
HtmlDecimal
蔙
HtmlHexadecimal
蔙
Url
%E8%94%99

Code

MD5
d4cc7ec0c38e55824349a3e6b5c05e5c
Sha1
35cdd4df4e2c799080c7d935f4b54e9abeb2d102
Base64
6JSZ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8519';
console.log(char);  // Output: 蔙

Java:

char c = '\u8519';
System.out.println(c);  // Output: 蔙

JSON:

{"text": "\u8519"}  // Value: 蔙

Python:

char = '\u8519'
print(char)  # Output: 蔙

Perl:

my $char = "\x{8519}";
print $char;  # Output: 蔙

PHP:

$char = "\x{8519}";
echo $char;  // Output: 蔙

Ruby:

char = "\u{8519}"
puts char  # Output: 蔙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008519";  /* Display: 蔙 */
}

HTML Decimal:

<p>HTML decimal: &#34073;</p>  <!-- Display: 蔙 -->

HTML Hexadecimal:

<p>HTML hex: &#x8519;</p>  <!-- Display: 蔙 -->

URL Encoding:

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

Encodings

MD5:

d4cc7ec0c38e55824349a3e6b5c05e5c

SHA1:

35cdd4df4e2c799080c7d935f4b54e9abeb2d102

Base64:

6JSZ