Unicode Finder

"胃" U+80C3(CJK UNIFIED IDEOGRAPH-80C3)

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

Programming

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

Web

CSS
\0080C3
HtmlDecimal
胃
HtmlHexadecimal
胃
Url
%E8%83%83

Code

MD5
4ef7e26e3c9f6bf6a7c11d92ace529c7
Sha1
da97a97eba52850582e81ca3f62ba69ebd493830
Base64
6IOD

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u80C3';
console.log(char);  // Output: 胃

Java:

char c = '\u80C3';
System.out.println(c);  // Output: 胃

JSON:

{"text": "\u80C3"}  // Value: 胃

Python:

char = '\u80C3'
print(char)  # Output: 胃

Perl:

my $char = "\x{80C3}";
print $char;  # Output: 胃

PHP:

$char = "\x{80C3}";
echo $char;  // Output: 胃

Ruby:

char = "\u{80C3}"
puts char  # Output: 胃

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32963;</p>  <!-- Display: 胃 -->

HTML Hexadecimal:

<p>HTML hex: &#x80C3;</p>  <!-- Display: 胃 -->

URL Encoding:

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

Encodings

MD5:

4ef7e26e3c9f6bf6a7c11d92ace529c7

SHA1:

da97a97eba52850582e81ca3f62ba69ebd493830

Base64:

6IOD