C:
char c = '\uB4AB';
printf("%c\n", c); // Output: 뒫
JavaScript:
const char = '\uB4AB';
console.log(char); // Output: 뒫
Java:
char c = '\uB4AB';
System.out.println(c); // Output: 뒫
JSON:
{"text": "\uB4AB"} // Value: 뒫
Python:
char = '\uB4AB'
print(char) # Output: 뒫
Perl:
my $char = "\x{B4AB}";
print $char; # Output: 뒫
PHP:
$char = "\x{B4AB}";
echo $char; // Output: 뒫
Ruby:
char = "\u{B4AB}"
puts char # Output: 뒫
Rust:
let c = '\u{B4AB}';
println!("{}", c); // Output: 뒫
Go:
char := '\uB4AB'
fmt.Printf("%c\n", char) // Output: 뒫
CSS:
/* CSS content property */
.element::before {
content: "\00B4AB"; /* 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%92%AB
MD5:
7a2518b36f7613cfd51b49d9e13cf2dc
SHA1:
757a4c9fea1c11c920d62b602af80dfeeaff953e
Base64:
65Kr