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