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