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