C:
char c = '\uC3EC';
printf("%c\n", c); // Output: 쏬
JavaScript:
const char = '\uC3EC';
console.log(char); // Output: 쏬
Java:
char c = '\uC3EC';
System.out.println(c); // Output: 쏬
JSON:
{"text": "\uC3EC"} // Value: 쏬
Python:
char = '\uC3EC'
print(char) # Output: 쏬
Perl:
my $char = "\x{C3EC}";
print $char; # Output: 쏬
PHP:
$char = "\x{C3EC}";
echo $char; // Output: 쏬
Ruby:
char = "\u{C3EC}"
puts char # Output: 쏬
Rust:
let c = '\u{C3EC}';
println!("{}", c); // Output: 쏬
Go:
char := '\uC3EC'
fmt.Printf("%c\n", char) // Output: 쏬
CSS:
/* CSS content property */
.element::before {
content: "\00C3EC"; /* 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%AC
MD5:
f700c5f1c8dccc21f8fa89299266546e
SHA1:
86422ee7d184f7ac52953b31b29dd8976f5d22d4
Base64:
7I+s