Unicode Finder

"胎" U+80CE(CJK UNIFIED IDEOGRAPH-80CE)

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

Programming

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

Web

CSS
\0080CE
HtmlDecimal
胎
HtmlHexadecimal
胎
Url
%E8%83%8E

Code

MD5
d3f02580c45a5d407e98a40f604f0fc8
Sha1
24ac196d5d5f9ee4b73a627ac7c50406b928633f
Base64
6IOO

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u80CE';
console.log(char);  // Output: 胎

Java:

char c = '\u80CE';
System.out.println(c);  // Output: 胎

JSON:

{"text": "\u80CE"}  // Value: 胎

Python:

char = '\u80CE'
print(char)  # Output: 胎

Perl:

my $char = "\x{80CE}";
print $char;  # Output: 胎

PHP:

$char = "\x{80CE}";
echo $char;  // Output: 胎

Ruby:

char = "\u{80CE}"
puts char  # Output: 胎

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32974;</p>  <!-- Display: 胎 -->

HTML Hexadecimal:

<p>HTML hex: &#x80CE;</p>  <!-- Display: 胎 -->

URL Encoding:

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

Encodings

MD5:

d3f02580c45a5d407e98a40f604f0fc8

SHA1:

24ac196d5d5f9ee4b73a627ac7c50406b928633f

Base64:

6IOO