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