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