Unicode Finder

"蒑" U+8491(CJK UNIFIED IDEOGRAPH-8491)

U+8491
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-8491

Programming

C
\u8491
JavaScript
\u8491
Java
\u8491
Json
\u8491
Python
\u8491
Perl
\x{8491}
PHP
\x{8491}
Ruby
\u{8491}
Rust
\u{8491}
Go
\u8491

Web

CSS
\008491
HtmlDecimal
蒑
HtmlHexadecimal
蒑
Url
%E8%92%91

Code

MD5
a493be21bfa887915908bb26cfd35c0c
Sha1
2c5540273a807dea9776cf16dc3c337836fb0385
Base64
6JKR

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8491';
console.log(char);  // Output: 蒑

Java:

char c = '\u8491';
System.out.println(c);  // Output: 蒑

JSON:

{"text": "\u8491"}  // Value: 蒑

Python:

char = '\u8491'
print(char)  # Output: 蒑

Perl:

my $char = "\x{8491}";
print $char;  # Output: 蒑

PHP:

$char = "\x{8491}";
echo $char;  // Output: 蒑

Ruby:

char = "\u{8491}"
puts char  # Output: 蒑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008491";  /* Display: 蒑 */
}

HTML Decimal:

<p>HTML decimal: &#33937;</p>  <!-- Display: 蒑 -->

HTML Hexadecimal:

<p>HTML hex: &#x8491;</p>  <!-- Display: 蒑 -->

URL Encoding:

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

Encodings

MD5:

a493be21bfa887915908bb26cfd35c0c

SHA1:

2c5540273a807dea9776cf16dc3c337836fb0385

Base64:

6JKR