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