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