C:
char c = '\uC099';
printf("%c\n", c); // Output: 삙
JavaScript:
const char = '\uC099';
console.log(char); // Output: 삙
Java:
char c = '\uC099';
System.out.println(c); // Output: 삙
JSON:
{"text": "\uC099"} // Value: 삙
Python:
char = '\uC099'
print(char) # Output: 삙
Perl:
my $char = "\x{C099}";
print $char; # Output: 삙
PHP:
$char = "\x{C099}";
echo $char; // Output: 삙
Ruby:
char = "\u{C099}"
puts char # Output: 삙
Rust:
let c = '\u{C099}';
println!("{}", c); // Output: 삙
Go:
char := '\uC099'
fmt.Printf("%c\n", char) // Output: 삙
CSS:
/* CSS content property */
.element::before {
content: "\00C099"; /* 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%82%99
MD5:
b7e3b5ddd2e08334d14b91f2d31c90dd
SHA1:
74f20d8d3cce9287c07f6ef578f37c071ba58b21
Base64:
7IKZ