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