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