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