C:
char c = '\u2417';
printf("%c\n", c); // Output: ␗
JavaScript:
const char = '\u2417';
console.log(char); // Output: ␗
Java:
char c = '\u2417';
System.out.println(c); // Output: ␗
JSON:
{"text": "\u2417"} // Value: ␗
Python:
char = '\u2417'
print(char) # Output: ␗
Perl:
my $char = "\x{2417}";
print $char; # Output: ␗
PHP:
$char = "\x{2417}";
echo $char; // Output: ␗
Ruby:
char = "\u{2417}"
puts char # Output: ␗
Rust:
let c = '\u{2417}';
println!("{}", c); // Output: ␗
Go:
char := '\u2417'
fmt.Printf("%c\n", char) // Output: ␗
CSS:
/* CSS content property */
.element::before {
content: "\002417"; /* 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%97
MD5:
d1b59dad28de3ad7b80851b73f004bdb
SHA1:
c963e131de33fc83b7ab2179bcef459e8a0e5ce1
Base64:
4pCX