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