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