C:
char c = '\uC0E5';
printf("%c\n", c); // Output: 샥
JavaScript:
const char = '\uC0E5';
console.log(char); // Output: 샥
Java:
char c = '\uC0E5';
System.out.println(c); // Output: 샥
JSON:
{"text": "\uC0E5"} // Value: 샥
Python:
char = '\uC0E5'
print(char) # Output: 샥
Perl:
my $char = "\x{C0E5}";
print $char; # Output: 샥
PHP:
$char = "\x{C0E5}";
echo $char; // Output: 샥
Ruby:
char = "\u{C0E5}"
puts char # Output: 샥
Rust:
let c = '\u{C0E5}';
println!("{}", c); // Output: 샥
Go:
char := '\uC0E5'
fmt.Printf("%c\n", char) // Output: 샥
CSS:
/* CSS content property */
.element::before {
content: "\00C0E5"; /* 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%A5
MD5:
4608e5c0ec8c0bfc6b3ae991bd7785c4
SHA1:
ea33805953f713345563d7a7eaa231cd69d9bd3f
Base64:
7IOl