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