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