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