C:
char c = '\uB35E';
printf("%c\n", c); // Output: 덞
JavaScript:
const char = '\uB35E';
console.log(char); // Output: 덞
Java:
char c = '\uB35E';
System.out.println(c); // Output: 덞
JSON:
{"text": "\uB35E"} // Value: 덞
Python:
char = '\uB35E'
print(char) # Output: 덞
Perl:
my $char = "\x{B35E}";
print $char; # Output: 덞
PHP:
$char = "\x{B35E}";
echo $char; // Output: 덞
Ruby:
char = "\u{B35E}"
puts char # Output: 덞
Rust:
let c = '\u{B35E}';
println!("{}", c); // Output: 덞
Go:
char := '\uB35E'
fmt.Printf("%c\n", char) // Output: 덞
CSS:
/* CSS content property */
.element::before {
content: "\00B35E"; /* 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%9E
MD5:
904a119482b443b91036d3977d280292
SHA1:
d7fd60c57466491ca81829a1b02337cb728ce64a
Base64:
642e