C:
char c = '\uA6DB';
printf("%c\n", c); // Output: ꛛ
JavaScript:
const char = '\uA6DB';
console.log(char); // Output: ꛛ
Java:
char c = '\uA6DB';
System.out.println(c); // Output: ꛛ
JSON:
{"text": "\uA6DB"} // Value: ꛛ
Python:
char = '\uA6DB'
print(char) # Output: ꛛ
Perl:
my $char = "\x{A6DB}";
print $char; # Output: ꛛ
PHP:
$char = "\x{A6DB}";
echo $char; // Output: ꛛ
Ruby:
char = "\u{A6DB}"
puts char # Output: ꛛ
Rust:
let c = '\u{A6DB}';
println!("{}", c); // Output: ꛛ
Go:
char := '\uA6DB'
fmt.Printf("%c\n", char) // Output: ꛛ
CSS:
/* CSS content property */
.element::before {
content: "\00A6DB"; /* 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%9B%9B
MD5:
0884b449af280b9f18e07f699dc8658d
SHA1:
f95abf4a0d7b714cacfbc8edeba03c20f346125b
Base64:
6pub