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