C:
char c = '\u2383';
printf("%c\n", c); // Output: ⎃
JavaScript:
const char = '\u2383';
console.log(char); // Output: ⎃
Java:
char c = '\u2383';
System.out.println(c); // Output: ⎃
JSON:
{"text": "\u2383"} // Value: ⎃
Python:
char = '\u2383'
print(char) # Output: ⎃
Perl:
my $char = "\x{2383}";
print $char; # Output: ⎃
PHP:
$char = "\x{2383}";
echo $char; // Output: ⎃
Ruby:
char = "\u{2383}"
puts char # Output: ⎃
Rust:
let c = '\u{2383}';
println!("{}", c); // Output: ⎃
Go:
char := '\u2383'
fmt.Printf("%c\n", char) // Output: ⎃
CSS:
/* CSS content property */
.element::before {
content: "\002383"; /* 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%83
MD5:
f10bc3281a76a4272164df514cd9d925
SHA1:
6f4460b8f24c9dbbb7e32feb197cb7855a121588
Base64:
4o6D