C:
char c = '\uC3AF';
printf("%c\n", c); // Output: 쎯
JavaScript:
const char = '\uC3AF';
console.log(char); // Output: 쎯
Java:
char c = '\uC3AF';
System.out.println(c); // Output: 쎯
JSON:
{"text": "\uC3AF"} // Value: 쎯
Python:
char = '\uC3AF'
print(char) # Output: 쎯
Perl:
my $char = "\x{C3AF}";
print $char; # Output: 쎯
PHP:
$char = "\x{C3AF}";
echo $char; // Output: 쎯
Ruby:
char = "\u{C3AF}"
puts char # Output: 쎯
Rust:
let c = '\u{C3AF}';
println!("{}", c); // Output: 쎯
Go:
char := '\uC3AF'
fmt.Printf("%c\n", char) // Output: 쎯
CSS:
/* CSS content property */
.element::before {
content: "\00C3AF"; /* 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%AF
MD5:
1c1cb223c203c062a5d38d84e10ded33
SHA1:
362870d0f5e651a755e974ac47ee733ad39a3570
Base64:
7I6v