C:
char c = '\u2928';
printf("%c\n", c); // Output: ⤨
JavaScript:
const char = '\u2928';
console.log(char); // Output: ⤨
Java:
char c = '\u2928';
System.out.println(c); // Output: ⤨
JSON:
{"text": "\u2928"} // Value: ⤨
Python:
char = '\u2928'
print(char) # Output: ⤨
Perl:
my $char = "\x{2928}";
print $char; # Output: ⤨
PHP:
$char = "\x{2928}";
echo $char; // Output: ⤨
Ruby:
char = "\u{2928}"
puts char # Output: ⤨
Rust:
let c = '\u{2928}';
println!("{}", c); // Output: ⤨
Go:
char := '\u2928'
fmt.Printf("%c\n", char) // Output: ⤨
CSS:
/* CSS content property */
.element::before {
content: "\002928"; /* 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%A4%A8
MD5:
690fc247fbd29e43347f8ebc17ce0573
SHA1:
48b2d77a8f4d9470bc19502866e85c96ff0f75a0
Base64:
4qSo