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