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