Unicode Finder

"胂" U+80C2(CJK UNIFIED IDEOGRAPH-80C2)

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

Programming

C
\u80C2
JavaScript
\u80C2
Java
\u80C2
Json
\u80C2
Python
\u80C2
Perl
\x{80C2}
PHP
\x{80C2}
Ruby
\u{80C2}
Rust
\u{80C2}
Go
\u80C2

Web

CSS
\0080C2
HtmlDecimal
胂
HtmlHexadecimal
胂
Url
%E8%83%82

Code

MD5
c7d494ad9a86119c9b309c172a739424
Sha1
9d8d12bb81939d2a24c84ac0ae62967fd4ff8025
Base64
6IOC

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u80C2';
console.log(char);  // Output: 胂

Java:

char c = '\u80C2';
System.out.println(c);  // Output: 胂

JSON:

{"text": "\u80C2"}  // Value: 胂

Python:

char = '\u80C2'
print(char)  # Output: 胂

Perl:

my $char = "\x{80C2}";
print $char;  # Output: 胂

PHP:

$char = "\x{80C2}";
echo $char;  // Output: 胂

Ruby:

char = "\u{80C2}"
puts char  # Output: 胂

Rust:

let c = '\u{80C2}';
println!("{}", c);  // Output: 胂

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0080C2";  /* Display: 胂 */
}

HTML Decimal:

<p>HTML decimal: &#32962;</p>  <!-- Display: 胂 -->

HTML Hexadecimal:

<p>HTML hex: &#x80C2;</p>  <!-- Display: 胂 -->

URL Encoding:

// 胂 URL encoding
https://unicodefinder.com/search.php?query=%E8%83%82

Encodings

MD5:

c7d494ad9a86119c9b309c172a739424

SHA1:

9d8d12bb81939d2a24c84ac0ae62967fd4ff8025

Base64:

6IOC