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