C:
char c = '\uB378';
printf("%c\n", c); // Output: 델
JavaScript:
const char = '\uB378';
console.log(char); // Output: 델
Java:
char c = '\uB378';
System.out.println(c); // Output: 델
JSON:
{"text": "\uB378"} // Value: 델
Python:
char = '\uB378'
print(char) # Output: 델
Perl:
my $char = "\x{B378}";
print $char; # Output: 델
PHP:
$char = "\x{B378}";
echo $char; // Output: 델
Ruby:
char = "\u{B378}"
puts char # Output: 델
Rust:
let c = '\u{B378}';
println!("{}", c); // Output: 델
Go:
char := '\uB378'
fmt.Printf("%c\n", char) // Output: 델
CSS:
/* CSS content property */
.element::before {
content: "\00B378"; /* 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%B8
MD5:
19856031be8f3a6213b9a7dd9bba5df4
SHA1:
a2e768a01ae136c442dee64caeedad8ad9d45feb
Base64:
6424