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