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