C:
char c = '\uCF1A';
printf("%c\n", c); // Output: 켚
JavaScript:
const char = '\uCF1A';
console.log(char); // Output: 켚
Java:
char c = '\uCF1A';
System.out.println(c); // Output: 켚
JSON:
{"text": "\uCF1A"} // Value: 켚
Python:
char = '\uCF1A'
print(char) # Output: 켚
Perl:
my $char = "\x{CF1A}";
print $char; # Output: 켚
PHP:
$char = "\x{CF1A}";
echo $char; // Output: 켚
Ruby:
char = "\u{CF1A}"
puts char # Output: 켚
Rust:
let c = '\u{CF1A}';
println!("{}", c); // Output: 켚
Go:
char := '\uCF1A'
fmt.Printf("%c\n", char) // Output: 켚
CSS:
/* CSS content property */
.element::before {
content: "\00CF1A"; /* 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%9A
MD5:
0362e6937a3fe8d9687259b79e399fe6
SHA1:
639213455069cf4f790fde1d4c8010437fb3813f
Base64:
7Lya