C:
char c = '\uCA9F';
printf("%c\n", c); // Output: 쪟
JavaScript:
const char = '\uCA9F';
console.log(char); // Output: 쪟
Java:
char c = '\uCA9F';
System.out.println(c); // Output: 쪟
JSON:
{"text": "\uCA9F"} // Value: 쪟
Python:
char = '\uCA9F'
print(char) # Output: 쪟
Perl:
my $char = "\x{CA9F}";
print $char; # Output: 쪟
PHP:
$char = "\x{CA9F}";
echo $char; // Output: 쪟
Ruby:
char = "\u{CA9F}"
puts char # Output: 쪟
Rust:
let c = '\u{CA9F}';
println!("{}", c); // Output: 쪟
Go:
char := '\uCA9F'
fmt.Printf("%c\n", char) // Output: 쪟
CSS:
/* CSS content property */
.element::before {
content: "\00CA9F"; /* 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%9F
MD5:
64fcbc03f85a59cea454a18c8e56a9c8
SHA1:
4189e51ac5eca94929355132efd2638066630412
Base64:
7Kqf