C:
char c = '\uAD0D';
printf("%c\n", c); // Output: 괍
JavaScript:
const char = '\uAD0D';
console.log(char); // Output: 괍
Java:
char c = '\uAD0D';
System.out.println(c); // Output: 괍
JSON:
{"text": "\uAD0D"} // Value: 괍
Python:
char = '\uAD0D'
print(char) # Output: 괍
Perl:
my $char = "\x{AD0D}";
print $char; # Output: 괍
PHP:
$char = "\x{AD0D}";
echo $char; // Output: 괍
Ruby:
char = "\u{AD0D}"
puts char # Output: 괍
Rust:
let c = '\u{AD0D}';
println!("{}", c); // Output: 괍
Go:
char := '\uAD0D'
fmt.Printf("%c\n", char) // Output: 괍
CSS:
/* CSS content property */
.element::before {
content: "\00AD0D"; /* 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%8D
MD5:
d013785a6bb59a8166c6d612dd6ebd67
SHA1:
3fd43026f9e5d9f6a6216a2c6f8cf52cadb516ae
Base64:
6rSN