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