C:
char c = '\uA307';
printf("%c\n", c); // Output: ꌇ
JavaScript:
const char = '\uA307';
console.log(char); // Output: ꌇ
Java:
char c = '\uA307';
System.out.println(c); // Output: ꌇ
JSON:
{"text": "\uA307"} // Value: ꌇ
Python:
char = '\uA307'
print(char) # Output: ꌇ
Perl:
my $char = "\x{A307}";
print $char; # Output: ꌇ
PHP:
$char = "\x{A307}";
echo $char; // Output: ꌇ
Ruby:
char = "\u{A307}"
puts char # Output: ꌇ
Rust:
let c = '\u{A307}';
println!("{}", c); // Output: ꌇ
Go:
char := '\uA307'
fmt.Printf("%c\n", char) // Output: ꌇ
CSS:
/* CSS content property */
.element::before {
content: "\00A307"; /* 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%87
MD5:
627e01839547df3b1c45512a3ed77fb9
SHA1:
17cb239f4851df7ccfae03303a70c9911b5f862f
Base64:
6oyH