Unicode Finder

"胆" U+80C6(CJK UNIFIED IDEOGRAPH-80C6)

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

Programming

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

Web

CSS
\0080C6
HtmlDecimal
胆
HtmlHexadecimal
胆
Url
%E8%83%86

Code

MD5
2ff36ef8b44ac06da99941da6ea2d5d4
Sha1
3a631129ec80bae76f4b136f3b07a5e5edb14289
Base64
6IOG

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u80C6';
console.log(char);  // Output: 胆

Java:

char c = '\u80C6';
System.out.println(c);  // Output: 胆

JSON:

{"text": "\u80C6"}  // Value: 胆

Python:

char = '\u80C6'
print(char)  # Output: 胆

Perl:

my $char = "\x{80C6}";
print $char;  # Output: 胆

PHP:

$char = "\x{80C6}";
echo $char;  // Output: 胆

Ruby:

char = "\u{80C6}"
puts char  # Output: 胆

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32966;</p>  <!-- Display: 胆 -->

HTML Hexadecimal:

<p>HTML hex: &#x80C6;</p>  <!-- Display: 胆 -->

URL Encoding:

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

Encodings

MD5:

2ff36ef8b44ac06da99941da6ea2d5d4

SHA1:

3a631129ec80bae76f4b136f3b07a5e5edb14289

Base64:

6IOG