C:
char c = '\uB4A4';
printf("%c\n", c); // Output: 뒤
JavaScript:
const char = '\uB4A4';
console.log(char); // Output: 뒤
Java:
char c = '\uB4A4';
System.out.println(c); // Output: 뒤
JSON:
{"text": "\uB4A4"} // Value: 뒤
Python:
char = '\uB4A4'
print(char) # Output: 뒤
Perl:
my $char = "\x{B4A4}";
print $char; # Output: 뒤
PHP:
$char = "\x{B4A4}";
echo $char; // Output: 뒤
Ruby:
char = "\u{B4A4}"
puts char # Output: 뒤
Rust:
let c = '\u{B4A4}';
println!("{}", c); // Output: 뒤
Go:
char := '\uB4A4'
fmt.Printf("%c\n", char) // Output: 뒤
CSS:
/* CSS content property */
.element::before {
content: "\00B4A4"; /* 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%A4
MD5:
530aafc7604745f639164dda3c13dd5b
SHA1:
59d5cbbb4e6ad5c31b2ab1337b97d8b8c4d69f29
Base64:
65Kk