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