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