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