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