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