Unicode Finder

"胀" U+80C0(CJK UNIFIED IDEOGRAPH-80C0)

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

Programming

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

Web

CSS
\0080C0
HtmlDecimal
胀
HtmlHexadecimal
胀
Url
%E8%83%80

Code

MD5
6cd2300236634389d2f5f4c446f7f67c
Sha1
a150fa084ec83e9787ae313e3814b7e99206ad26
Base64
6IOA

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u80C0';
console.log(char);  // Output: 胀

Java:

char c = '\u80C0';
System.out.println(c);  // Output: 胀

JSON:

{"text": "\u80C0"}  // Value: 胀

Python:

char = '\u80C0'
print(char)  # Output: 胀

Perl:

my $char = "\x{80C0}";
print $char;  # Output: 胀

PHP:

$char = "\x{80C0}";
echo $char;  // Output: 胀

Ruby:

char = "\u{80C0}"
puts char  # Output: 胀

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32960;</p>  <!-- Display: 胀 -->

HTML Hexadecimal:

<p>HTML hex: &#x80C0;</p>  <!-- Display: 胀 -->

URL Encoding:

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

Encodings

MD5:

6cd2300236634389d2f5f4c446f7f67c

SHA1:

a150fa084ec83e9787ae313e3814b7e99206ad26

Base64:

6IOA