C:
char c = '\uB376';
printf("%c\n", c); // Output: 덶
JavaScript:
const char = '\uB376';
console.log(char); // Output: 덶
Java:
char c = '\uB376';
System.out.println(c); // Output: 덶
JSON:
{"text": "\uB376"} // Value: 덶
Python:
char = '\uB376'
print(char) # Output: 덶
Perl:
my $char = "\x{B376}";
print $char; # Output: 덶
PHP:
$char = "\x{B376}";
echo $char; // Output: 덶
Ruby:
char = "\u{B376}"
puts char # Output: 덶
Rust:
let c = '\u{B376}';
println!("{}", c); // Output: 덶
Go:
char := '\uB376'
fmt.Printf("%c\n", char) // Output: 덶
CSS:
/* CSS content property */
.element::before {
content: "\00B376"; /* 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%B6
MD5:
55585375b36d266638dbd5a0c710fdae
SHA1:
27d8906f8a4a80d78fd2eb01b660d751c6258348
Base64:
6422