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