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