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