C:
char c = '\u2413';
printf("%c\n", c); // Output: ␓
JavaScript:
const char = '\u2413';
console.log(char); // Output: ␓
Java:
char c = '\u2413';
System.out.println(c); // Output: ␓
JSON:
{"text": "\u2413"} // Value: ␓
Python:
char = '\u2413'
print(char) # Output: ␓
Perl:
my $char = "\x{2413}";
print $char; # Output: ␓
PHP:
$char = "\x{2413}";
echo $char; // Output: ␓
Ruby:
char = "\u{2413}"
puts char # Output: ␓
Rust:
let c = '\u{2413}';
println!("{}", c); // Output: ␓
Go:
char := '\u2413'
fmt.Printf("%c\n", char) // Output: ␓
CSS:
/* CSS content property */
.element::before {
content: "\002413"; /* 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%93
MD5:
509f279ea95973ea27e729839421df59
SHA1:
fc4e1a16f002bd6afb67d534d3768b1e0bd11c11
Base64:
4pCT