C:
char c = '\uB9E0';
printf("%c\n", c); // Output: 맠
JavaScript:
const char = '\uB9E0';
console.log(char); // Output: 맠
Java:
char c = '\uB9E0';
System.out.println(c); // Output: 맠
JSON:
{"text": "\uB9E0"} // Value: 맠
Python:
char = '\uB9E0'
print(char) # Output: 맠
Perl:
my $char = "\x{B9E0}";
print $char; # Output: 맠
PHP:
$char = "\x{B9E0}";
echo $char; // Output: 맠
Ruby:
char = "\u{B9E0}"
puts char # Output: 맠
Rust:
let c = '\u{B9E0}';
println!("{}", c); // Output: 맠
Go:
char := '\uB9E0'
fmt.Printf("%c\n", char) // Output: 맠
CSS:
/* CSS content property */
.element::before {
content: "\00B9E0"; /* 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=%EB%A7%A0
MD5:
26ba5939f937c72145d5965bef9b3e47
SHA1:
5c6e1ea67b724113df373d262bac5deffa27b176
Base64:
66eg