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