C:
char c = '\uBA5E';
printf("%c\n", c); // Output: 멞
JavaScript:
const char = '\uBA5E';
console.log(char); // Output: 멞
Java:
char c = '\uBA5E';
System.out.println(c); // Output: 멞
JSON:
{"text": "\uBA5E"} // Value: 멞
Python:
char = '\uBA5E'
print(char) # Output: 멞
Perl:
my $char = "\x{BA5E}";
print $char; # Output: 멞
PHP:
$char = "\x{BA5E}";
echo $char; // Output: 멞
Ruby:
char = "\u{BA5E}"
puts char # Output: 멞
Rust:
let c = '\u{BA5E}';
println!("{}", c); // Output: 멞
Go:
char := '\uBA5E'
fmt.Printf("%c\n", char) // Output: 멞
CSS:
/* CSS content property */
.element::before {
content: "\00BA5E"; /* 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%A9%9E
MD5:
4ab821bdfb70d8156accc10c7c1d01ae
SHA1:
2344bfa974b6b3acf2377f2e97bc5055252b31c3
Base64:
66me