C:
char c = '\uCF19';
printf("%c\n", c); // Output: 켙
JavaScript:
const char = '\uCF19';
console.log(char); // Output: 켙
Java:
char c = '\uCF19';
System.out.println(c); // Output: 켙
JSON:
{"text": "\uCF19"} // Value: 켙
Python:
char = '\uCF19'
print(char) # Output: 켙
Perl:
my $char = "\x{CF19}";
print $char; # Output: 켙
PHP:
$char = "\x{CF19}";
echo $char; // Output: 켙
Ruby:
char = "\u{CF19}"
puts char # Output: 켙
Rust:
let c = '\u{CF19}';
println!("{}", c); // Output: 켙
Go:
char := '\uCF19'
fmt.Printf("%c\n", char) // Output: 켙
CSS:
/* CSS content property */
.element::before {
content: "\00CF19"; /* 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=%EC%BC%99
MD5:
ba26af84ebd1806a56d0cc740972f2db
SHA1:
b41fa1e316a1ad34f8dad0e65e7bb5f83bc9153c
Base64:
7LyZ