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