C:
char c = '\uC42A';
printf("%c\n", c); // Output: 쐪
JavaScript:
const char = '\uC42A';
console.log(char); // Output: 쐪
Java:
char c = '\uC42A';
System.out.println(c); // Output: 쐪
JSON:
{"text": "\uC42A"} // Value: 쐪
Python:
char = '\uC42A'
print(char) # Output: 쐪
Perl:
my $char = "\x{C42A}";
print $char; # Output: 쐪
PHP:
$char = "\x{C42A}";
echo $char; // Output: 쐪
Ruby:
char = "\u{C42A}"
puts char # Output: 쐪
Rust:
let c = '\u{C42A}';
println!("{}", c); // Output: 쐪
Go:
char := '\uC42A'
fmt.Printf("%c\n", char) // Output: 쐪
CSS:
/* CSS content property */
.element::before {
content: "\00C42A"; /* 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%AA
MD5:
341ce4339071c2e0fa4f6bfe6bcd7746
SHA1:
c398de5e00f05145f1e4aee5bab6f7b05b7bdca1
Base64:
7JCq