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