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