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