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