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