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