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