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