C:
char c = '\u8246';
printf("%c\n", c); // Output: 艆
JavaScript:
const char = '\u8246';
console.log(char); // Output: 艆
Java:
char c = '\u8246';
System.out.println(c); // Output: 艆
JSON:
{"text": "\u8246"} // Value: 艆
Python:
char = '\u8246'
print(char) # Output: 艆
Perl:
my $char = "\x{8246}";
print $char; # Output: 艆
PHP:
$char = "\x{8246}";
echo $char; // Output: 艆
Ruby:
char = "\u{8246}"
puts char # Output: 艆
Rust:
let c = '\u{8246}';
println!("{}", c); // Output: 艆
Go:
char := '\u8246'
fmt.Printf("%c\n", char) // Output: 艆
CSS:
/* CSS content property */
.element::before {
content: "\008246"; /* 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%89%86
MD5:
d92b15c7a2eef3853f72e50505ae814f
SHA1:
690c3675f842b0391fbec1dd407ab3ab10d9f4c0
Base64:
6ImG