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