Unicode Finder

"肠" U+80A0(CJK UNIFIED IDEOGRAPH-80A0)

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

Programming

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

Web

CSS
\0080A0
HtmlDecimal
肠
HtmlHexadecimal
肠
Url
%E8%82%A0

Code

MD5
88c8ac5f333f095c29b8a5df67f1d811
Sha1
8fb6fce40035e81fe0b613fcffb626095236c77e
Base64
6IKg

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u80A0';
console.log(char);  // Output: 肠

Java:

char c = '\u80A0';
System.out.println(c);  // Output: 肠

JSON:

{"text": "\u80A0"}  // Value: 肠

Python:

char = '\u80A0'
print(char)  # Output: 肠

Perl:

my $char = "\x{80A0}";
print $char;  # Output: 肠

PHP:

$char = "\x{80A0}";
echo $char;  // Output: 肠

Ruby:

char = "\u{80A0}"
puts char  # Output: 肠

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32928;</p>  <!-- Display: 肠 -->

HTML Hexadecimal:

<p>HTML hex: &#x80A0;</p>  <!-- Display: 肠 -->

URL Encoding:

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

Encodings

MD5:

88c8ac5f333f095c29b8a5df67f1d811

SHA1:

8fb6fce40035e81fe0b613fcffb626095236c77e

Base64:

6IKg