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