C:
char c = '\u2388';
printf("%c\n", c); // Output: ⎈
JavaScript:
const char = '\u2388';
console.log(char); // Output: ⎈
Java:
char c = '\u2388';
System.out.println(c); // Output: ⎈
JSON:
{"text": "\u2388"} // Value: ⎈
Python:
char = '\u2388'
print(char) # Output: ⎈
Perl:
my $char = "\x{2388}";
print $char; # Output: ⎈
PHP:
$char = "\x{2388}";
echo $char; // Output: ⎈
Ruby:
char = "\u{2388}"
puts char # Output: ⎈
Rust:
let c = '\u{2388}';
println!("{}", c); // Output: ⎈
Go:
char := '\u2388'
fmt.Printf("%c\n", char) // Output: ⎈
CSS:
/* CSS content property */
.element::before {
content: "\002388"; /* 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%8E%88
MD5:
5bd8d354fd8b659c573013057dde3e24
SHA1:
05c2ca489c99b8680dcbb1f8a0b8009676653d39
Base64:
4o6I