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