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