C:
char c = '\u1926';
printf("%c\n", c); // Output: ᤦ
JavaScript:
const char = '\u1926';
console.log(char); // Output: ᤦ
Java:
char c = '\u1926';
System.out.println(c); // Output: ᤦ
JSON:
{"text": "\u1926"} // Value: ᤦ
Python:
char = '\u1926'
print(char) # Output: ᤦ
Perl:
my $char = "\x{1926}";
print $char; # Output: ᤦ
PHP:
$char = "\x{1926}";
echo $char; // Output: ᤦ
Ruby:
char = "\u{1926}"
puts char # Output: ᤦ
Rust:
let c = '\u{1926}';
println!("{}", c); // Output: ᤦ
Go:
char := '\u1926'
fmt.Printf("%c\n", char) // Output: ᤦ
CSS:
/* CSS content property */
.element::before {
content: "\001926"; /* 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=%E1%A4%A6
MD5:
fac66f59321c88b954170bfdd7896746
SHA1:
96114472702f1b0516e248dce8dcd9aed7cb582a
Base64:
4aSm