C:
char c = '\uC4E4';
printf("%c\n", c); // Output: 쓤
JavaScript:
const char = '\uC4E4';
console.log(char); // Output: 쓤
Java:
char c = '\uC4E4';
System.out.println(c); // Output: 쓤
JSON:
{"text": "\uC4E4"} // Value: 쓤
Python:
char = '\uC4E4'
print(char) # Output: 쓤
Perl:
my $char = "\x{C4E4}";
print $char; # Output: 쓤
PHP:
$char = "\x{C4E4}";
echo $char; // Output: 쓤
Ruby:
char = "\u{C4E4}"
puts char # Output: 쓤
Rust:
let c = '\u{C4E4}';
println!("{}", c); // Output: 쓤
Go:
char := '\uC4E4'
fmt.Printf("%c\n", char) // Output: 쓤
CSS:
/* CSS content property */
.element::before {
content: "\00C4E4"; /* 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%93%A4
MD5:
0ed60cf6447b4b40fa575cd9bce9ab05
SHA1:
a1a397318ad3d3cc1926b44bbeb9c65d30f0a68c
Base64:
7JOk