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