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