C:
char c = '\uB32F';
printf("%c\n", c); // Output: 댯
JavaScript:
const char = '\uB32F';
console.log(char); // Output: 댯
Java:
char c = '\uB32F';
System.out.println(c); // Output: 댯
JSON:
{"text": "\uB32F"} // Value: 댯
Python:
char = '\uB32F'
print(char) # Output: 댯
Perl:
my $char = "\x{B32F}";
print $char; # Output: 댯
PHP:
$char = "\x{B32F}";
echo $char; // Output: 댯
Ruby:
char = "\u{B32F}"
puts char # Output: 댯
Rust:
let c = '\u{B32F}';
println!("{}", c); // Output: 댯
Go:
char := '\uB32F'
fmt.Printf("%c\n", char) // Output: 댯
CSS:
/* CSS content property */
.element::before {
content: "\00B32F"; /* 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%8C%AF
MD5:
733d0721a0ad620a655cc7207683fba8
SHA1:
fb41875a341b2c8fc05ffb313a59791a194b477d
Base64:
64yv