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