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