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