Unicode Finder

"蕃" U+8543(CJK UNIFIED IDEOGRAPH-8543)

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

Programming

C
\u8543
JavaScript
\u8543
Java
\u8543
Json
\u8543
Python
\u8543
Perl
\x{8543}
PHP
\x{8543}
Ruby
\u{8543}
Rust
\u{8543}
Go
\u8543

Web

CSS
\008543
HtmlDecimal
蕃
HtmlHexadecimal
蕃
Url
%E8%95%83

Code

MD5
08e02052bd55cead893fbfa7b7fd6136
Sha1
ffe0f0f1dd99ba744050b827b281e0a0d661e2a1
Base64
6JWD

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8543';
console.log(char);  // Output: 蕃

Java:

char c = '\u8543';
System.out.println(c);  // Output: 蕃

JSON:

{"text": "\u8543"}  // Value: 蕃

Python:

char = '\u8543'
print(char)  # Output: 蕃

Perl:

my $char = "\x{8543}";
print $char;  # Output: 蕃

PHP:

$char = "\x{8543}";
echo $char;  // Output: 蕃

Ruby:

char = "\u{8543}"
puts char  # Output: 蕃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008543";  /* Display: 蕃 */
}

HTML Decimal:

<p>HTML decimal: &#34115;</p>  <!-- Display: 蕃 -->

HTML Hexadecimal:

<p>HTML hex: &#x8543;</p>  <!-- Display: 蕃 -->

URL Encoding:

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

Encodings

MD5:

08e02052bd55cead893fbfa7b7fd6136

SHA1:

ffe0f0f1dd99ba744050b827b281e0a0d661e2a1

Base64:

6JWD