Unicode Finder

"蔃" U+8503(CJK UNIFIED IDEOGRAPH-8503)

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

Programming

C
\u8503
JavaScript
\u8503
Java
\u8503
Json
\u8503
Python
\u8503
Perl
\x{8503}
PHP
\x{8503}
Ruby
\u{8503}
Rust
\u{8503}
Go
\u8503

Web

CSS
\008503
HtmlDecimal
蔃
HtmlHexadecimal
蔃
Url
%E8%94%83

Code

MD5
0bcf1224351625c124f401cc5326e093
Sha1
ecf70046474ece5a688c78f9f2e4e57714411519
Base64
6JSD

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8503';
console.log(char);  // Output: 蔃

Java:

char c = '\u8503';
System.out.println(c);  // Output: 蔃

JSON:

{"text": "\u8503"}  // Value: 蔃

Python:

char = '\u8503'
print(char)  # Output: 蔃

Perl:

my $char = "\x{8503}";
print $char;  # Output: 蔃

PHP:

$char = "\x{8503}";
echo $char;  // Output: 蔃

Ruby:

char = "\u{8503}"
puts char  # Output: 蔃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008503";  /* Display: 蔃 */
}

HTML Decimal:

<p>HTML decimal: &#34051;</p>  <!-- Display: 蔃 -->

HTML Hexadecimal:

<p>HTML hex: &#x8503;</p>  <!-- Display: 蔃 -->

URL Encoding:

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

Encodings

MD5:

0bcf1224351625c124f401cc5326e093

SHA1:

ecf70046474ece5a688c78f9f2e4e57714411519

Base64:

6JSD