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