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