C:
char c = '\uBF4B';
printf("%c\n", c); // Output: 뽋
JavaScript:
const char = '\uBF4B';
console.log(char); // Output: 뽋
Java:
char c = '\uBF4B';
System.out.println(c); // Output: 뽋
JSON:
{"text": "\uBF4B"} // Value: 뽋
Python:
char = '\uBF4B'
print(char) # Output: 뽋
Perl:
my $char = "\x{BF4B}";
print $char; # Output: 뽋
PHP:
$char = "\x{BF4B}";
echo $char; // Output: 뽋
Ruby:
char = "\u{BF4B}"
puts char # Output: 뽋
Rust:
let c = '\u{BF4B}';
println!("{}", c); // Output: 뽋
Go:
char := '\uBF4B'
fmt.Printf("%c\n", char) // Output: 뽋
CSS:
/* CSS content property */
.element::before {
content: "\00BF4B"; /* 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%BD%8B
MD5:
1adcdd8e05f3de686105dcb3e6c400d8
SHA1:
bacd0ebaa177c69012ee1b6f4f00cbea716f0567
Base64:
672L