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