Unicode Finder

"肮" U+80AE(CJK UNIFIED IDEOGRAPH-80AE)

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

Programming

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

Web

CSS
\0080AE
HtmlDecimal
肮
HtmlHexadecimal
肮
Url
%E8%82%AE

Code

MD5
03e87396fe453fe5690993e88d2322b1
Sha1
84c51b1a1b40a5c966295f54a5a1c35bcf622b56
Base64
6IKu

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u80AE';
console.log(char);  // Output: 肮

Java:

char c = '\u80AE';
System.out.println(c);  // Output: 肮

JSON:

{"text": "\u80AE"}  // Value: 肮

Python:

char = '\u80AE'
print(char)  # Output: 肮

Perl:

my $char = "\x{80AE}";
print $char;  # Output: 肮

PHP:

$char = "\x{80AE}";
echo $char;  // Output: 肮

Ruby:

char = "\u{80AE}"
puts char  # Output: 肮

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32942;</p>  <!-- Display: 肮 -->

HTML Hexadecimal:

<p>HTML hex: &#x80AE;</p>  <!-- Display: 肮 -->

URL Encoding:

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

Encodings

MD5:

03e87396fe453fe5690993e88d2322b1

SHA1:

84c51b1a1b40a5c966295f54a5a1c35bcf622b56

Base64:

6IKu