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