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