C:
char c = '\uA3C7';
printf("%c\n", c); // Output: ꏇ
JavaScript:
const char = '\uA3C7';
console.log(char); // Output: ꏇ
Java:
char c = '\uA3C7';
System.out.println(c); // Output: ꏇ
JSON:
{"text": "\uA3C7"} // Value: ꏇ
Python:
char = '\uA3C7'
print(char) # Output: ꏇ
Perl:
my $char = "\x{A3C7}";
print $char; # Output: ꏇ
PHP:
$char = "\x{A3C7}";
echo $char; // Output: ꏇ
Ruby:
char = "\u{A3C7}"
puts char # Output: ꏇ
Rust:
let c = '\u{A3C7}';
println!("{}", c); // Output: ꏇ
Go:
char := '\uA3C7'
fmt.Printf("%c\n", char) // Output: ꏇ
CSS:
/* CSS content property */
.element::before {
content: "\00A3C7"; /* 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%8F%87
MD5:
1552d4eed32cf07fe5638f4d9010a513
SHA1:
f3371513e5bb6403e2abf8b586dea41e3c8fea54
Base64:
6o+H