C:
char c = '\uBF14';
printf("%c\n", c); // Output: 뼔
JavaScript:
const char = '\uBF14';
console.log(char); // Output: 뼔
Java:
char c = '\uBF14';
System.out.println(c); // Output: 뼔
JSON:
{"text": "\uBF14"} // Value: 뼔
Python:
char = '\uBF14'
print(char) # Output: 뼔
Perl:
my $char = "\x{BF14}";
print $char; # Output: 뼔
PHP:
$char = "\x{BF14}";
echo $char; // Output: 뼔
Ruby:
char = "\u{BF14}"
puts char # Output: 뼔
Rust:
let c = '\u{BF14}';
println!("{}", c); // Output: 뼔
Go:
char := '\uBF14'
fmt.Printf("%c\n", char) // Output: 뼔
CSS:
/* CSS content property */
.element::before {
content: "\00BF14"; /* 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%BC%94
MD5:
145a51ddde85404e5802094acc2400de
SHA1:
d6e888d09e618e693c21f9ecd42afe3e5e458d27
Base64:
67yU