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