C:
char c = '\u806A';
printf("%c\n", c); // Output: 聪
JavaScript:
const char = '\u806A';
console.log(char); // Output: 聪
Java:
char c = '\u806A';
System.out.println(c); // Output: 聪
JSON:
{"text": "\u806A"} // Value: 聪
Python:
char = '\u806A'
print(char) # Output: 聪
Perl:
my $char = "\x{806A}";
print $char; # Output: 聪
PHP:
$char = "\x{806A}";
echo $char; // Output: 聪
Ruby:
char = "\u{806A}"
puts char # Output: 聪
Rust:
let c = '\u{806A}';
println!("{}", c); // Output: 聪
Go:
char := '\u806A'
fmt.Printf("%c\n", char) // Output: 聪
CSS:
/* CSS content property */
.element::before {
content: "\00806A"; /* 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%81%AA
MD5:
c013b79c84a5fbc7631b2ee6d48ce531
SHA1:
bb111a7dd9b4848028a9c9c721bf94c750335e1e
Base64:
6IGq