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