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