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