Unicode Finder

"芫" U+82AB(CJK UNIFIED IDEOGRAPH-82AB)

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

Programming

C
\u82AB
JavaScript
\u82AB
Java
\u82AB
Json
\u82AB
Python
\u82AB
Perl
\x{82AB}
PHP
\x{82AB}
Ruby
\u{82AB}
Rust
\u{82AB}
Go
\u82AB

Web

CSS
\0082AB
HtmlDecimal
芫
HtmlHexadecimal
芫
Url
%E8%8A%AB

Code

MD5
7b0089a39a07836422130760edb3fdc5
Sha1
d1352cc3df9673c2c4f159f68853d060be96492b
Base64
6Iqr

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u82AB';
console.log(char);  // Output: 芫

Java:

char c = '\u82AB';
System.out.println(c);  // Output: 芫

JSON:

{"text": "\u82AB"}  // Value: 芫

Python:

char = '\u82AB'
print(char)  # Output: 芫

Perl:

my $char = "\x{82AB}";
print $char;  # Output: 芫

PHP:

$char = "\x{82AB}";
echo $char;  // Output: 芫

Ruby:

char = "\u{82AB}"
puts char  # Output: 芫

Rust:

let c = '\u{82AB}';
println!("{}", c);  // Output: 芫

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0082AB";  /* Display: 芫 */
}

HTML Decimal:

<p>HTML decimal: &#33451;</p>  <!-- Display: 芫 -->

HTML Hexadecimal:

<p>HTML hex: &#x82AB;</p>  <!-- Display: 芫 -->

URL Encoding:

// 芫 URL encoding
https://unicodefinder.com/search.php?query=%E8%8A%AB

Encodings

MD5:

7b0089a39a07836422130760edb3fdc5

SHA1:

d1352cc3df9673c2c4f159f68853d060be96492b

Base64:

6Iqr