Unicode Finder

"蒁" U+8481(CJK UNIFIED IDEOGRAPH-8481)

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

Programming

C
\u8481
JavaScript
\u8481
Java
\u8481
Json
\u8481
Python
\u8481
Perl
\x{8481}
PHP
\x{8481}
Ruby
\u{8481}
Rust
\u{8481}
Go
\u8481

Web

CSS
\008481
HtmlDecimal
蒁
HtmlHexadecimal
蒁
Url
%E8%92%81

Code

MD5
d2702f67a7104eb6ae2dc78eb9525eeb
Sha1
8240c6b5502afc67a44eb6c871aa1c8289fd066b
Base64
6JKB

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8481';
console.log(char);  // Output: 蒁

Java:

char c = '\u8481';
System.out.println(c);  // Output: 蒁

JSON:

{"text": "\u8481"}  // Value: 蒁

Python:

char = '\u8481'
print(char)  # Output: 蒁

Perl:

my $char = "\x{8481}";
print $char;  # Output: 蒁

PHP:

$char = "\x{8481}";
echo $char;  // Output: 蒁

Ruby:

char = "\u{8481}"
puts char  # Output: 蒁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008481";  /* Display: 蒁 */
}

HTML Decimal:

<p>HTML decimal: &#33921;</p>  <!-- Display: 蒁 -->

HTML Hexadecimal:

<p>HTML hex: &#x8481;</p>  <!-- Display: 蒁 -->

URL Encoding:

// 蒁 URL encoding
https://unicodefinder.com/search.php?query=%E8%92%81

Encodings

MD5:

d2702f67a7104eb6ae2dc78eb9525eeb

SHA1:

8240c6b5502afc67a44eb6c871aa1c8289fd066b

Base64:

6JKB