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