C:
char c = '\uA467';
printf("%c\n", c); // Output: ꑧ
JavaScript:
const char = '\uA467';
console.log(char); // Output: ꑧ
Java:
char c = '\uA467';
System.out.println(c); // Output: ꑧ
JSON:
{"text": "\uA467"} // Value: ꑧ
Python:
char = '\uA467'
print(char) # Output: ꑧ
Perl:
my $char = "\x{A467}";
print $char; # Output: ꑧ
PHP:
$char = "\x{A467}";
echo $char; // Output: ꑧ
Ruby:
char = "\u{A467}"
puts char # Output: ꑧ
Rust:
let c = '\u{A467}';
println!("{}", c); // Output: ꑧ
Go:
char := '\uA467'
fmt.Printf("%c\n", char) // Output: ꑧ
CSS:
/* CSS content property */
.element::before {
content: "\00A467"; /* 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%91%A7
MD5:
e2b886b74669c754cfe5515aebb29ade
SHA1:
2d75d597c08b7f877fca80054d8fcbec1420e3cd
Base64:
6pGn