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