C:
char c = '\u2C29';
printf("%c\n", c); // Output: Ⱙ
JavaScript:
const char = '\u2C29';
console.log(char); // Output: Ⱙ
Java:
char c = '\u2C29';
System.out.println(c); // Output: Ⱙ
JSON:
{"text": "\u2C29"} // Value: Ⱙ
Python:
char = '\u2C29'
print(char) # Output: Ⱙ
Perl:
my $char = "\x{2C29}";
print $char; # Output: Ⱙ
PHP:
$char = "\x{2C29}";
echo $char; // Output: Ⱙ
Ruby:
char = "\u{2C29}"
puts char # Output: Ⱙ
Rust:
let c = '\u{2C29}';
println!("{}", c); // Output: Ⱙ
Go:
char := '\u2C29'
fmt.Printf("%c\n", char) // Output: Ⱙ
CSS:
/* CSS content property */
.element::before {
content: "\002C29"; /* 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%B0%A9
MD5:
275e74df8a21cd9be5571377eaa0581d
SHA1:
1fd131696b3e9d234bf00841db00848fd06d7d70
Base64:
4rCp