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