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