C:
char c = '\u231A';
printf("%c\n", c); // Output: ⌚
JavaScript:
const char = '\u231A';
console.log(char); // Output: ⌚
Java:
char c = '\u231A';
System.out.println(c); // Output: ⌚
JSON:
{"text": "\u231A"} // Value: ⌚
Python:
char = '\u231A'
print(char) # Output: ⌚
Perl:
my $char = "\x{231A}";
print $char; # Output: ⌚
PHP:
$char = "\x{231A}";
echo $char; // Output: ⌚
Ruby:
char = "\u{231A}"
puts char # Output: ⌚
Rust:
let c = '\u{231A}';
println!("{}", c); // Output: ⌚
Go:
char := '\u231A'
fmt.Printf("%c\n", char) // Output: ⌚
CSS:
/* CSS content property */
.element::before {
content: "\00231A"; /* 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%8C%9A
MD5:
aff04aafec3349606040ff8556678694
SHA1:
deba64bd6501f8798af8c1e746653ab6ff6b4a20
Base64:
4oya