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