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