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