C:
char c = '\uAF98';
printf("%c\n", c); // Output: 꾘
JavaScript:
const char = '\uAF98';
console.log(char); // Output: 꾘
Java:
char c = '\uAF98';
System.out.println(c); // Output: 꾘
JSON:
{"text": "\uAF98"} // Value: 꾘
Python:
char = '\uAF98'
print(char) # Output: 꾘
Perl:
my $char = "\x{AF98}";
print $char; # Output: 꾘
PHP:
$char = "\x{AF98}";
echo $char; // Output: 꾘
Ruby:
char = "\u{AF98}"
puts char # Output: 꾘
Rust:
let c = '\u{AF98}';
println!("{}", c); // Output: 꾘
Go:
char := '\uAF98'
fmt.Printf("%c\n", char) // Output: 꾘
CSS:
/* CSS content property */
.element::before {
content: "\00AF98"; /* 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=%EA%BE%98
MD5:
3d0d44f2d46b0ca4803eb1281c881beb
SHA1:
ef7141bbe88e59a694938a7c9897baa9903f4563
Base64:
6r6Y