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