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