C:
char c = '\u2418';
printf("%c\n", c); // Output: ␘
JavaScript:
const char = '\u2418';
console.log(char); // Output: ␘
Java:
char c = '\u2418';
System.out.println(c); // Output: ␘
JSON:
{"text": "\u2418"} // Value: ␘
Python:
char = '\u2418'
print(char) # Output: ␘
Perl:
my $char = "\x{2418}";
print $char; # Output: ␘
PHP:
$char = "\x{2418}";
echo $char; // Output: ␘
Ruby:
char = "\u{2418}"
puts char # Output: ␘
Rust:
let c = '\u{2418}';
println!("{}", c); // Output: ␘
Go:
char := '\u2418'
fmt.Printf("%c\n", char) // Output: ␘
CSS:
/* CSS content property */
.element::before {
content: "\002418"; /* 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%98
MD5:
6191e7a24bc051b30e16b3fdc6e4002d
SHA1:
f8bde25615d376f903874bf13cd798637312bac1
Base64:
4pCY