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