Unicode Finder

"蕀" U+8540(CJK UNIFIED IDEOGRAPH-8540)

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

Programming

C
\u8540
JavaScript
\u8540
Java
\u8540
Json
\u8540
Python
\u8540
Perl
\x{8540}
PHP
\x{8540}
Ruby
\u{8540}
Rust
\u{8540}
Go
\u8540

Web

CSS
\008540
HtmlDecimal
蕀
HtmlHexadecimal
蕀
Url
%E8%95%80

Code

MD5
6467c753efc2db460fc4a96ea76aa365
Sha1
fd8c0ad3ab70f94039395d98a070ec8cf3f15b73
Base64
6JWA

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8540';
console.log(char);  // Output: 蕀

Java:

char c = '\u8540';
System.out.println(c);  // Output: 蕀

JSON:

{"text": "\u8540"}  // Value: 蕀

Python:

char = '\u8540'
print(char)  # Output: 蕀

Perl:

my $char = "\x{8540}";
print $char;  # Output: 蕀

PHP:

$char = "\x{8540}";
echo $char;  // Output: 蕀

Ruby:

char = "\u{8540}"
puts char  # Output: 蕀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008540";  /* Display: 蕀 */
}

HTML Decimal:

<p>HTML decimal: &#34112;</p>  <!-- Display: 蕀 -->

HTML Hexadecimal:

<p>HTML hex: &#x8540;</p>  <!-- Display: 蕀 -->

URL Encoding:

// 蕀 URL encoding
https://unicodefinder.com/search.php?query=%E8%95%80

Encodings

MD5:

6467c753efc2db460fc4a96ea76aa365

SHA1:

fd8c0ad3ab70f94039395d98a070ec8cf3f15b73

Base64:

6JWA