C:
char c = '\u0A22';
printf("%c\n", c); // Output: ਢ
JavaScript:
const char = '\u0A22';
console.log(char); // Output: ਢ
Java:
char c = '\u0A22';
System.out.println(c); // Output: ਢ
JSON:
{"text": "\u0A22"} // Value: ਢ
Python:
char = '\u0A22'
print(char) # Output: ਢ
Perl:
my $char = "\x{0A22}";
print $char; # Output: ਢ
PHP:
$char = "\x{0A22}";
echo $char; // Output: ਢ
Ruby:
char = "\u{0A22}"
puts char # Output: ਢ
Rust:
let c = '\u{A22}';
println!("{}", c); // Output: ਢ
Go:
char := '\u0A22'
fmt.Printf("%c\n", char) // Output: ਢ
CSS:
/* CSS content property */
.element::before {
content: "\000A22"; /* 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=%E0%A8%A2
MD5:
a0b8007b62979a907fb65c0a8e7ebb93
SHA1:
9cfbc25a9371fdc53870563aa643a631cd2749ec
Base64:
4Kii