C:
char c = '\uBFAA';
printf("%c\n", c); // Output: 뾪
JavaScript:
const char = '\uBFAA';
console.log(char); // Output: 뾪
Java:
char c = '\uBFAA';
System.out.println(c); // Output: 뾪
JSON:
{"text": "\uBFAA"} // Value: 뾪
Python:
char = '\uBFAA'
print(char) # Output: 뾪
Perl:
my $char = "\x{BFAA}";
print $char; # Output: 뾪
PHP:
$char = "\x{BFAA}";
echo $char; // Output: 뾪
Ruby:
char = "\u{BFAA}"
puts char # Output: 뾪
Rust:
let c = '\u{BFAA}';
println!("{}", c); // Output: 뾪
Go:
char := '\uBFAA'
fmt.Printf("%c\n", char) // Output: 뾪
CSS:
/* CSS content property */
.element::before {
content: "\00BFAA"; /* 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%BE%AA
MD5:
ff90d538fdf25bb5bb034e6f9330e49d
SHA1:
71d078a90553d36f778afcc1df2b42b27080ee26
Base64:
676q