C:
char c = '\u1929';
printf("%c\n", c); // Output: ᤩ
JavaScript:
const char = '\u1929';
console.log(char); // Output: ᤩ
Java:
char c = '\u1929';
System.out.println(c); // Output: ᤩ
JSON:
{"text": "\u1929"} // Value: ᤩ
Python:
char = '\u1929'
print(char) # Output: ᤩ
Perl:
my $char = "\x{1929}";
print $char; # Output: ᤩ
PHP:
$char = "\x{1929}";
echo $char; // Output: ᤩ
Ruby:
char = "\u{1929}"
puts char # Output: ᤩ
Rust:
let c = '\u{1929}';
println!("{}", c); // Output: ᤩ
Go:
char := '\u1929'
fmt.Printf("%c\n", char) // Output: ᤩ
CSS:
/* CSS content property */
.element::before {
content: "\001929"; /* 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%A9
MD5:
e64ed30ad59e2cfd95d329534e4a9931
SHA1:
75ceb7a3b3dceeb8e43983fc3d3bd15e0091c0a0
Base64:
4aSp