Unicode Finder

"蒀" U+8480(CJK UNIFIED IDEOGRAPH-8480)

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

Programming

C
\u8480
JavaScript
\u8480
Java
\u8480
Json
\u8480
Python
\u8480
Perl
\x{8480}
PHP
\x{8480}
Ruby
\u{8480}
Rust
\u{8480}
Go
\u8480

Web

CSS
\008480
HtmlDecimal
蒀
HtmlHexadecimal
蒀
Url
%E8%92%80

Code

MD5
ecfad1a18beb331b14ce2325ec9f328a
Sha1
a94f34e3cdfa62462c17bca23fd7a9ccc6424f4f
Base64
6JKA

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8480';
console.log(char);  // Output: 蒀

Java:

char c = '\u8480';
System.out.println(c);  // Output: 蒀

JSON:

{"text": "\u8480"}  // Value: 蒀

Python:

char = '\u8480'
print(char)  # Output: 蒀

Perl:

my $char = "\x{8480}";
print $char;  # Output: 蒀

PHP:

$char = "\x{8480}";
echo $char;  // Output: 蒀

Ruby:

char = "\u{8480}"
puts char  # Output: 蒀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008480";  /* Display: 蒀 */
}

HTML Decimal:

<p>HTML decimal: &#33920;</p>  <!-- Display: 蒀 -->

HTML Hexadecimal:

<p>HTML hex: &#x8480;</p>  <!-- Display: 蒀 -->

URL Encoding:

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

Encodings

MD5:

ecfad1a18beb331b14ce2325ec9f328a

SHA1:

a94f34e3cdfa62462c17bca23fd7a9ccc6424f4f

Base64:

6JKA