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