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