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