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