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