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