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