C:
char c = '\uBF8A';
printf("%c\n", c); // Output: 뾊
JavaScript:
const char = '\uBF8A';
console.log(char); // Output: 뾊
Java:
char c = '\uBF8A';
System.out.println(c); // Output: 뾊
JSON:
{"text": "\uBF8A"} // Value: 뾊
Python:
char = '\uBF8A'
print(char) # Output: 뾊
Perl:
my $char = "\x{BF8A}";
print $char; # Output: 뾊
PHP:
$char = "\x{BF8A}";
echo $char; // Output: 뾊
Ruby:
char = "\u{BF8A}"
puts char # Output: 뾊
Rust:
let c = '\u{BF8A}';
println!("{}", c); // Output: 뾊
Go:
char := '\uBF8A'
fmt.Printf("%c\n", char) // Output: 뾊
CSS:
/* CSS content property */
.element::before {
content: "\00BF8A"; /* 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%8A
MD5:
5eec14919a248a3885de043f8c313972
SHA1:
77e773eaf1dda01367daa1ef0a4d05f3b3edd270
Base64:
676K