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