C:
char c = '\u6C0A';
printf("%c\n", c); // Output: 氊
JavaScript:
const char = '\u6C0A';
console.log(char); // Output: 氊
Java:
char c = '\u6C0A';
System.out.println(c); // Output: 氊
JSON:
{"text": "\u6C0A"} // Value: 氊
Python:
char = '\u6C0A'
print(char) # Output: 氊
Perl:
my $char = "\x{6C0A}";
print $char; # Output: 氊
PHP:
$char = "\x{6C0A}";
echo $char; // Output: 氊
Ruby:
char = "\u{6C0A}"
puts char # Output: 氊
Rust:
let c = '\u{6C0A}';
println!("{}", c); // Output: 氊
Go:
char := '\u6C0A'
fmt.Printf("%c\n", char) // Output: 氊
CSS:
/* CSS content property */
.element::before {
content: "\006C0A"; /* 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=%E6%B0%8A
MD5:
0eb3027b00bed720e74deae02f5c7f16
SHA1:
59a568ba301e7f43693713524dafef3374d5e0dd
Base64:
5rCK