C:
char c = '\u2426';
printf("%c\n", c); // Output: ␦
JavaScript:
const char = '\u2426';
console.log(char); // Output: ␦
Java:
char c = '\u2426';
System.out.println(c); // Output: ␦
JSON:
{"text": "\u2426"} // Value: ␦
Python:
char = '\u2426'
print(char) # Output: ␦
Perl:
my $char = "\x{2426}";
print $char; # Output: ␦
PHP:
$char = "\x{2426}";
echo $char; // Output: ␦
Ruby:
char = "\u{2426}"
puts char # Output: ␦
Rust:
let c = '\u{2426}';
println!("{}", c); // Output: ␦
Go:
char := '\u2426'
fmt.Printf("%c\n", char) // Output: ␦
CSS:
/* CSS content property */
.element::before {
content: "\002426"; /* 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%A6
MD5:
167669885e43fd6a32b3ea131deaf8b2
SHA1:
549b1819a03038993e9032d254f1e2c6f40fd1f4
Base64:
4pCm