Unicode Finder

"蒈" U+8488(CJK UNIFIED IDEOGRAPH-8488)

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

Programming

C
\u8488
JavaScript
\u8488
Java
\u8488
Json
\u8488
Python
\u8488
Perl
\x{8488}
PHP
\x{8488}
Ruby
\u{8488}
Rust
\u{8488}
Go
\u8488

Web

CSS
\008488
HtmlDecimal
蒈
HtmlHexadecimal
蒈
Url
%E8%92%88

Code

MD5
44d9f956c03e9d2837d1496a61dc010f
Sha1
6654f036d3bd2bd3f7ed0ae84427c14a2221da85
Base64
6JKI

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8488';
console.log(char);  // Output: 蒈

Java:

char c = '\u8488';
System.out.println(c);  // Output: 蒈

JSON:

{"text": "\u8488"}  // Value: 蒈

Python:

char = '\u8488'
print(char)  # Output: 蒈

Perl:

my $char = "\x{8488}";
print $char;  # Output: 蒈

PHP:

$char = "\x{8488}";
echo $char;  // Output: 蒈

Ruby:

char = "\u{8488}"
puts char  # Output: 蒈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008488";  /* Display: 蒈 */
}

HTML Decimal:

<p>HTML decimal: &#33928;</p>  <!-- Display: 蒈 -->

HTML Hexadecimal:

<p>HTML hex: &#x8488;</p>  <!-- Display: 蒈 -->

URL Encoding:

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

Encodings

MD5:

44d9f956c03e9d2837d1496a61dc010f

SHA1:

6654f036d3bd2bd3f7ed0ae84427c14a2221da85

Base64:

6JKI