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