C:
char c = '\uAD06';
printf("%c\n", c); // Output: 괆
JavaScript:
const char = '\uAD06';
console.log(char); // Output: 괆
Java:
char c = '\uAD06';
System.out.println(c); // Output: 괆
JSON:
{"text": "\uAD06"} // Value: 괆
Python:
char = '\uAD06'
print(char) # Output: 괆
Perl:
my $char = "\x{AD06}";
print $char; # Output: 괆
PHP:
$char = "\x{AD06}";
echo $char; // Output: 괆
Ruby:
char = "\u{AD06}"
puts char # Output: 괆
Rust:
let c = '\u{AD06}';
println!("{}", c); // Output: 괆
Go:
char := '\uAD06'
fmt.Printf("%c\n", char) // Output: 괆
CSS:
/* CSS content property */
.element::before {
content: "\00AD06"; /* 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=%EA%B4%86
MD5:
778a8d97a39667bb978bb27c5a10f315
SHA1:
a8f9a9b649ef276a402465afe516ba3ad892d403
Base64:
6rSG