C:
char c = '\uB364';
printf("%c\n", c); // Output: 덤
JavaScript:
const char = '\uB364';
console.log(char); // Output: 덤
Java:
char c = '\uB364';
System.out.println(c); // Output: 덤
JSON:
{"text": "\uB364"} // Value: 덤
Python:
char = '\uB364'
print(char) # Output: 덤
Perl:
my $char = "\x{B364}";
print $char; # Output: 덤
PHP:
$char = "\x{B364}";
echo $char; // Output: 덤
Ruby:
char = "\u{B364}"
puts char # Output: 덤
Rust:
let c = '\u{B364}';
println!("{}", c); // Output: 덤
Go:
char := '\uB364'
fmt.Printf("%c\n", char) // Output: 덤
CSS:
/* CSS content property */
.element::before {
content: "\00B364"; /* 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%8D%A4
MD5:
6630821e401a200723a64fcd19341748
SHA1:
ccdf9376ecb6c5a82b2e1b12e5adac16f5b9ae4b
Base64:
642k