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