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