Unicode Finder

"蒒" U+8492(CJK UNIFIED IDEOGRAPH-8492)

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

Programming

C
\u8492
JavaScript
\u8492
Java
\u8492
Json
\u8492
Python
\u8492
Perl
\x{8492}
PHP
\x{8492}
Ruby
\u{8492}
Rust
\u{8492}
Go
\u8492

Web

CSS
\008492
HtmlDecimal
蒒
HtmlHexadecimal
蒒
Url
%E8%92%92

Code

MD5
ac7bfcf748472ea5feda7a578dcf51e6
Sha1
f06ca8a7a78f88ae8b9ee5b4e3d367bf1307afe9
Base64
6JKS

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8492';
console.log(char);  // Output: 蒒

Java:

char c = '\u8492';
System.out.println(c);  // Output: 蒒

JSON:

{"text": "\u8492"}  // Value: 蒒

Python:

char = '\u8492'
print(char)  # Output: 蒒

Perl:

my $char = "\x{8492}";
print $char;  # Output: 蒒

PHP:

$char = "\x{8492}";
echo $char;  // Output: 蒒

Ruby:

char = "\u{8492}"
puts char  # Output: 蒒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008492";  /* Display: 蒒 */
}

HTML Decimal:

<p>HTML decimal: &#33938;</p>  <!-- Display: 蒒 -->

HTML Hexadecimal:

<p>HTML hex: &#x8492;</p>  <!-- Display: 蒒 -->

URL Encoding:

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

Encodings

MD5:

ac7bfcf748472ea5feda7a578dcf51e6

SHA1:

f06ca8a7a78f88ae8b9ee5b4e3d367bf1307afe9

Base64:

6JKS