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