C:
char c = '\uC3E4';
printf("%c\n", c); // Output: 쏤
JavaScript:
const char = '\uC3E4';
console.log(char); // Output: 쏤
Java:
char c = '\uC3E4';
System.out.println(c); // Output: 쏤
JSON:
{"text": "\uC3E4"} // Value: 쏤
Python:
char = '\uC3E4'
print(char) # Output: 쏤
Perl:
my $char = "\x{C3E4}";
print $char; # Output: 쏤
PHP:
$char = "\x{C3E4}";
echo $char; // Output: 쏤
Ruby:
char = "\u{C3E4}"
puts char # Output: 쏤
Rust:
let c = '\u{C3E4}';
println!("{}", c); // Output: 쏤
Go:
char := '\uC3E4'
fmt.Printf("%c\n", char) // Output: 쏤
CSS:
/* CSS content property */
.element::before {
content: "\00C3E4"; /* 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%8F%A4
MD5:
94b8d2294184e4985f013ec7c4261010
SHA1:
a3352d5aa366c916f211f08f434581c20d0429e1
Base64:
7I+k