C:
char c = '\uA6B1';
printf("%c\n", c); // Output: ꚱ
JavaScript:
const char = '\uA6B1';
console.log(char); // Output: ꚱ
Java:
char c = '\uA6B1';
System.out.println(c); // Output: ꚱ
JSON:
{"text": "\uA6B1"} // Value: ꚱ
Python:
char = '\uA6B1'
print(char) # Output: ꚱ
Perl:
my $char = "\x{A6B1}";
print $char; # Output: ꚱ
PHP:
$char = "\x{A6B1}";
echo $char; // Output: ꚱ
Ruby:
char = "\u{A6B1}"
puts char # Output: ꚱ
Rust:
let c = '\u{A6B1}';
println!("{}", c); // Output: ꚱ
Go:
char := '\uA6B1'
fmt.Printf("%c\n", char) // Output: ꚱ
CSS:
/* CSS content property */
.element::before {
content: "\00A6B1"; /* 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%9A%B1
MD5:
26eac0685e773493d7f27fc703cbdbe0
SHA1:
194083e31f7843dcf3708756b27edb4c22f88864
Base64:
6pqx