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