C:
char c = '\uA146';
printf("%c\n", c); // Output: ꅆ
JavaScript:
const char = '\uA146';
console.log(char); // Output: ꅆ
Java:
char c = '\uA146';
System.out.println(c); // Output: ꅆ
JSON:
{"text": "\uA146"} // Value: ꅆ
Python:
char = '\uA146'
print(char) # Output: ꅆ
Perl:
my $char = "\x{A146}";
print $char; # Output: ꅆ
PHP:
$char = "\x{A146}";
echo $char; // Output: ꅆ
Ruby:
char = "\u{A146}"
puts char # Output: ꅆ
Rust:
let c = '\u{A146}';
println!("{}", c); // Output: ꅆ
Go:
char := '\uA146'
fmt.Printf("%c\n", char) // Output: ꅆ
CSS:
/* CSS content property */
.element::before {
content: "\00A146"; /* 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%85%86
MD5:
2426a5aed62ac8bd2d4e400fb6515c64
SHA1:
30100371d845129c4cc5b882e86b689d0015521f
Base64:
6oWG