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