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