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