C:
char c = '\u2A29';
printf("%c\n", c); // Output: ⨩
JavaScript:
const char = '\u2A29';
console.log(char); // Output: ⨩
Java:
char c = '\u2A29';
System.out.println(c); // Output: ⨩
JSON:
{"text": "\u2A29"} // Value: ⨩
Python:
char = '\u2A29'
print(char) # Output: ⨩
Perl:
my $char = "\x{2A29}";
print $char; # Output: ⨩
PHP:
$char = "\x{2A29}";
echo $char; // Output: ⨩
Ruby:
char = "\u{2A29}"
puts char # Output: ⨩
Rust:
let c = '\u{2A29}';
println!("{}", c); // Output: ⨩
Go:
char := '\u2A29'
fmt.Printf("%c\n", char) // Output: ⨩
CSS:
/* CSS content property */
.element::before {
content: "\002A29"; /* 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=%E2%A8%A9
MD5:
fd071a2389435a38d43c1c9e4d1fc403
SHA1:
8992e66c8844e707f30654bc8dc9fb3713ee76a1
Base64:
4qip