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