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