Unicode Finder

"蜫" U+872B(CJK UNIFIED IDEOGRAPH-872B)

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

Programming

C
\u872B
JavaScript
\u872B
Java
\u872B
Json
\u872B
Python
\u872B
Perl
\x{872B}
PHP
\x{872B}
Ruby
\u{872B}
Rust
\u{872B}
Go
\u872B

Web

CSS
\00872B
HtmlDecimal
蜫
HtmlHexadecimal
蜫
Url
%E8%9C%AB

Code

MD5
cbe205a9478d744826a080da0daf3f48
Sha1
cd1c16ff8ad817bdda5d4fbe1a279f62ab83f423
Base64
6Jyr

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u872B';
console.log(char);  // Output: 蜫

Java:

char c = '\u872B';
System.out.println(c);  // Output: 蜫

JSON:

{"text": "\u872B"}  // Value: 蜫

Python:

char = '\u872B'
print(char)  # Output: 蜫

Perl:

my $char = "\x{872B}";
print $char;  # Output: 蜫

PHP:

$char = "\x{872B}";
echo $char;  // Output: 蜫

Ruby:

char = "\u{872B}"
puts char  # Output: 蜫

Rust:

let c = '\u{872B}';
println!("{}", c);  // Output: 蜫

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00872B";  /* Display: 蜫 */
}

HTML Decimal:

<p>HTML decimal: &#34603;</p>  <!-- Display: 蜫 -->

HTML Hexadecimal:

<p>HTML hex: &#x872B;</p>  <!-- Display: 蜫 -->

URL Encoding:

// 蜫 URL encoding
https://unicodefinder.com/search.php?query=%E8%9C%AB

Encodings

MD5:

cbe205a9478d744826a080da0daf3f48

SHA1:

cd1c16ff8ad817bdda5d4fbe1a279f62ab83f423

Base64:

6Jyr