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