C:
char c = '\uCA9B';
printf("%c\n", c); // Output: 쪛
JavaScript:
const char = '\uCA9B';
console.log(char); // Output: 쪛
Java:
char c = '\uCA9B';
System.out.println(c); // Output: 쪛
JSON:
{"text": "\uCA9B"} // Value: 쪛
Python:
char = '\uCA9B'
print(char) # Output: 쪛
Perl:
my $char = "\x{CA9B}";
print $char; # Output: 쪛
PHP:
$char = "\x{CA9B}";
echo $char; // Output: 쪛
Ruby:
char = "\u{CA9B}"
puts char # Output: 쪛
Rust:
let c = '\u{CA9B}';
println!("{}", c); // Output: 쪛
Go:
char := '\uCA9B'
fmt.Printf("%c\n", char) // Output: 쪛
CSS:
/* CSS content property */
.element::before {
content: "\00CA9B"; /* 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%9B
MD5:
44eaa5138b1b4e40ad1298c7282b0594
SHA1:
5ba64a74a787228b42bc4ecabcae690935f1c3e8
Base64:
7Kqb