C:
char c = '\u2397';
printf("%c\n", c); // Output: ⎗
JavaScript:
const char = '\u2397';
console.log(char); // Output: ⎗
Java:
char c = '\u2397';
System.out.println(c); // Output: ⎗
JSON:
{"text": "\u2397"} // Value: ⎗
Python:
char = '\u2397'
print(char) # Output: ⎗
Perl:
my $char = "\x{2397}";
print $char; # Output: ⎗
PHP:
$char = "\x{2397}";
echo $char; // Output: ⎗
Ruby:
char = "\u{2397}"
puts char # Output: ⎗
Rust:
let c = '\u{2397}';
println!("{}", c); // Output: ⎗
Go:
char := '\u2397'
fmt.Printf("%c\n", char) // Output: ⎗
CSS:
/* CSS content property */
.element::before {
content: "\002397"; /* 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%97
MD5:
421cf35aa83c14443912a7846f448355
SHA1:
c546ace63ca0a108ce6159234df3e2787d8ef3e3
Base64:
4o6X