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