C:
char c = '\u2927';
printf("%c\n", c); // Output: ⤧
JavaScript:
const char = '\u2927';
console.log(char); // Output: ⤧
Java:
char c = '\u2927';
System.out.println(c); // Output: ⤧
JSON:
{"text": "\u2927"} // Value: ⤧
Python:
char = '\u2927'
print(char) # Output: ⤧
Perl:
my $char = "\x{2927}";
print $char; # Output: ⤧
PHP:
$char = "\x{2927}";
echo $char; // Output: ⤧
Ruby:
char = "\u{2927}"
puts char # Output: ⤧
Rust:
let c = '\u{2927}';
println!("{}", c); // Output: ⤧
Go:
char := '\u2927'
fmt.Printf("%c\n", char) // Output: ⤧
CSS:
/* CSS content property */
.element::before {
content: "\002927"; /* 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%A7
MD5:
d061687b811edc95074e0a5b759760aa
SHA1:
289d51ab4d7ddcf61e02955fe067c06080f5efc6
Base64:
4qSn