C:
char c = '\uA3C3';
printf("%c\n", c); // Output: ꏃ
JavaScript:
const char = '\uA3C3';
console.log(char); // Output: ꏃ
Java:
char c = '\uA3C3';
System.out.println(c); // Output: ꏃ
JSON:
{"text": "\uA3C3"} // Value: ꏃ
Python:
char = '\uA3C3'
print(char) # Output: ꏃ
Perl:
my $char = "\x{A3C3}";
print $char; # Output: ꏃ
PHP:
$char = "\x{A3C3}";
echo $char; // Output: ꏃ
Ruby:
char = "\u{A3C3}"
puts char # Output: ꏃ
Rust:
let c = '\u{A3C3}';
println!("{}", c); // Output: ꏃ
Go:
char := '\uA3C3'
fmt.Printf("%c\n", char) // Output: ꏃ
CSS:
/* CSS content property */
.element::before {
content: "\00A3C3"; /* 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%8F%83
MD5:
045e191b447c8fd57d5e65b170965b4e
SHA1:
8fa68232d6e50d3497654a927035eb57e258d7c1
Base64:
6o+D