C:
char c = '\u60A1';
printf("%c\n", c); // Output: 悡
JavaScript:
const char = '\u60A1';
console.log(char); // Output: 悡
Java:
char c = '\u60A1';
System.out.println(c); // Output: 悡
JSON:
{"text": "\u60A1"} // Value: 悡
Python:
char = '\u60A1'
print(char) # Output: 悡
Perl:
my $char = "\x{60A1}";
print $char; # Output: 悡
PHP:
$char = "\x{60A1}";
echo $char; // Output: 悡
Ruby:
char = "\u{60A1}"
puts char # Output: 悡
Rust:
let c = '\u{60A1}';
println!("{}", c); // Output: 悡
Go:
char := '\u60A1'
fmt.Printf("%c\n", char) // Output: 悡
CSS:
/* CSS content property */
.element::before {
content: "\0060A1"; /* 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%82%A1
MD5:
c653fc9b72152a2593f34206bb44f454
SHA1:
7f67e8db9a20e6a39293fb5428c58fb941ee79d0
Base64:
5oKh