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