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