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