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