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