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