C:
char c = '\u2415';
printf("%c\n", c); // Output: ␕
JavaScript:
const char = '\u2415';
console.log(char); // Output: ␕
Java:
char c = '\u2415';
System.out.println(c); // Output: ␕
JSON:
{"text": "\u2415"} // Value: ␕
Python:
char = '\u2415'
print(char) # Output: ␕
Perl:
my $char = "\x{2415}";
print $char; # Output: ␕
PHP:
$char = "\x{2415}";
echo $char; // Output: ␕
Ruby:
char = "\u{2415}"
puts char # Output: ␕
Rust:
let c = '\u{2415}';
println!("{}", c); // Output: ␕
Go:
char := '\u2415'
fmt.Printf("%c\n", char) // Output: ␕
CSS:
/* CSS content property */
.element::before {
content: "\002415"; /* 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%95
MD5:
1e7984999075187595ef8060f45aa721
SHA1:
5d46d2a3c92deed2633954e799c1b29359026836
Base64:
4pCV