C:
char c = '\u23DA';
printf("%c\n", c); // Output: ⏚
JavaScript:
const char = '\u23DA';
console.log(char); // Output: ⏚
Java:
char c = '\u23DA';
System.out.println(c); // Output: ⏚
JSON:
{"text": "\u23DA"} // Value: ⏚
Python:
char = '\u23DA'
print(char) # Output: ⏚
Perl:
my $char = "\x{23DA}";
print $char; # Output: ⏚
PHP:
$char = "\x{23DA}";
echo $char; // Output: ⏚
Ruby:
char = "\u{23DA}"
puts char # Output: ⏚
Rust:
let c = '\u{23DA}';
println!("{}", c); // Output: ⏚
Go:
char := '\u23DA'
fmt.Printf("%c\n", char) // Output: ⏚
CSS:
/* CSS content property */
.element::before {
content: "\0023DA"; /* 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%8F%9A
MD5:
0cb9b059ccd83593baeeac399aa8d1c6
SHA1:
e3f7a85244955a9786dde57d722d791414fcee28
Base64:
4o+a