C:
char c = '\u2409';
printf("%c\n", c); // Output: ␉
JavaScript:
const char = '\u2409';
console.log(char); // Output: ␉
Java:
char c = '\u2409';
System.out.println(c); // Output: ␉
JSON:
{"text": "\u2409"} // Value: ␉
Python:
char = '\u2409'
print(char) # Output: ␉
Perl:
my $char = "\x{2409}";
print $char; # Output: ␉
PHP:
$char = "\x{2409}";
echo $char; // Output: ␉
Ruby:
char = "\u{2409}"
puts char # Output: ␉
Rust:
let c = '\u{2409}';
println!("{}", c); // Output: ␉
Go:
char := '\u2409'
fmt.Printf("%c\n", char) // Output: ␉
CSS:
/* CSS content property */
.element::before {
content: "\002409"; /* 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%89
MD5:
b02f026ea6346eaf9a26ceddbdcd4890
SHA1:
2a6999b1af99656749680d20c5a627f9d3a8f0c6
Base64:
4pCJ