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