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