C:
char c = '\uC5A2';
printf("%c\n", c); // Output: 얢
JavaScript:
const char = '\uC5A2';
console.log(char); // Output: 얢
Java:
char c = '\uC5A2';
System.out.println(c); // Output: 얢
JSON:
{"text": "\uC5A2"} // Value: 얢
Python:
char = '\uC5A2'
print(char) # Output: 얢
Perl:
my $char = "\x{C5A2}";
print $char; # Output: 얢
PHP:
$char = "\x{C5A2}";
echo $char; // Output: 얢
Ruby:
char = "\u{C5A2}"
puts char # Output: 얢
Rust:
let c = '\u{C5A2}';
println!("{}", c); // Output: 얢
Go:
char := '\uC5A2'
fmt.Printf("%c\n", char) // Output: 얢
CSS:
/* CSS content property */
.element::before {
content: "\00C5A2"; /* 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%96%A2
MD5:
08386d2d59d6603ad0e7703da02a4c95
SHA1:
68572b033d3e347eeb5c9a6343d11821b99656c1
Base64:
7Jai