Unicode Finder

"蕂" U+8542(CJK UNIFIED IDEOGRAPH-8542)

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

Programming

C
\u8542
JavaScript
\u8542
Java
\u8542
Json
\u8542
Python
\u8542
Perl
\x{8542}
PHP
\x{8542}
Ruby
\u{8542}
Rust
\u{8542}
Go
\u8542

Web

CSS
\008542
HtmlDecimal
蕂
HtmlHexadecimal
蕂
Url
%E8%95%82

Code

MD5
580b0f85d018c470b27ff44c5fd0d735
Sha1
38bd99492622d24ff2d2be14162c9aab7c70167c
Base64
6JWC

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8542';
console.log(char);  // Output: 蕂

Java:

char c = '\u8542';
System.out.println(c);  // Output: 蕂

JSON:

{"text": "\u8542"}  // Value: 蕂

Python:

char = '\u8542'
print(char)  # Output: 蕂

Perl:

my $char = "\x{8542}";
print $char;  # Output: 蕂

PHP:

$char = "\x{8542}";
echo $char;  // Output: 蕂

Ruby:

char = "\u{8542}"
puts char  # Output: 蕂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008542";  /* Display: 蕂 */
}

HTML Decimal:

<p>HTML decimal: &#34114;</p>  <!-- Display: 蕂 -->

HTML Hexadecimal:

<p>HTML hex: &#x8542;</p>  <!-- Display: 蕂 -->

URL Encoding:

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

Encodings

MD5:

580b0f85d018c470b27ff44c5fd0d735

SHA1:

38bd99492622d24ff2d2be14162c9aab7c70167c

Base64:

6JWC