C:
char c = '\u2385';
printf("%c\n", c); // Output: ⎅
JavaScript:
const char = '\u2385';
console.log(char); // Output: ⎅
Java:
char c = '\u2385';
System.out.println(c); // Output: ⎅
JSON:
{"text": "\u2385"} // Value: ⎅
Python:
char = '\u2385'
print(char) # Output: ⎅
Perl:
my $char = "\x{2385}";
print $char; # Output: ⎅
PHP:
$char = "\x{2385}";
echo $char; // Output: ⎅
Ruby:
char = "\u{2385}"
puts char # Output: ⎅
Rust:
let c = '\u{2385}';
println!("{}", c); // Output: ⎅
Go:
char := '\u2385'
fmt.Printf("%c\n", char) // Output: ⎅
CSS:
/* CSS content property */
.element::before {
content: "\002385"; /* 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%85
MD5:
b3b4f9d3abcb281fd4310604d5f59b40
SHA1:
08e0c5fcf36af35cc5e146cc08ccdf65b5249ac5
Base64:
4o6F