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: 胆
CSS:
/* CSS content property */
.element::before {
content: "\0080C6"; /* Display: 胆 */
}
HTML Decimal:
<p>HTML decimal: 胆</p> <!-- Display: 胆 -->
HTML Hexadecimal:
<p>HTML hex: 胆</p> <!-- Display: 胆 -->
URL Encoding:
// 胆 URL encoding
https://unicodefinder.com/search.php?query=%E8%83%86
MD5:
2ff36ef8b44ac06da99941da6ea2d5d4
SHA1:
3a631129ec80bae76f4b136f3b07a5e5edb14289
Base64:
6IOG