Unicode Finder

"胟" U+80DF(CJK UNIFIED IDEOGRAPH-80DF)

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

Programming

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

Web

CSS
\0080DF
HtmlDecimal
胟
HtmlHexadecimal
胟
Url
%E8%83%9F

Code

MD5
8bd481d41663f5c73f6c57baedc8e298
Sha1
35affbb2b58fe589ff718586605216530a10c7f3
Base64
6IOf

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u80DF';
console.log(char);  // Output: 胟

Java:

char c = '\u80DF';
System.out.println(c);  // Output: 胟

JSON:

{"text": "\u80DF"}  // Value: 胟

Python:

char = '\u80DF'
print(char)  # Output: 胟

Perl:

my $char = "\x{80DF}";
print $char;  # Output: 胟

PHP:

$char = "\x{80DF}";
echo $char;  // Output: 胟

Ruby:

char = "\u{80DF}"
puts char  # Output: 胟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32991;</p>  <!-- Display: 胟 -->

HTML Hexadecimal:

<p>HTML hex: &#x80DF;</p>  <!-- Display: 胟 -->

URL Encoding:

// 胟 URL encoding
https://unicodefinder.com/search.php?query=%E8%83%9F

Encodings

MD5:

8bd481d41663f5c73f6c57baedc8e298

SHA1:

35affbb2b58fe589ff718586605216530a10c7f3

Base64:

6IOf