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