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