C:
char c = '\uB4F1';
printf("%c\n", c); // Output: 등
JavaScript:
const char = '\uB4F1';
console.log(char); // Output: 등
Java:
char c = '\uB4F1';
System.out.println(c); // Output: 등
JSON:
{"text": "\uB4F1"} // Value: 등
Python:
char = '\uB4F1'
print(char) # Output: 등
Perl:
my $char = "\x{B4F1}";
print $char; # Output: 등
PHP:
$char = "\x{B4F1}";
echo $char; // Output: 등
Ruby:
char = "\u{B4F1}"
puts char # Output: 등
Rust:
let c = '\u{B4F1}';
println!("{}", c); // Output: 등
Go:
char := '\uB4F1'
fmt.Printf("%c\n", char) // Output: 등
CSS:
/* CSS content property */
.element::before {
content: "\00B4F1"; /* 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%93%B1
MD5:
f941f867188a853c81588405bda8c31f
SHA1:
1cfd61b4d5cc80c3fa8888b351a3f55b79dbb0da
Base64:
65Ox