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