C:
char c = '\u2386';
printf("%c\n", c); // Output: ⎆
JavaScript:
const char = '\u2386';
console.log(char); // Output: ⎆
Java:
char c = '\u2386';
System.out.println(c); // Output: ⎆
JSON:
{"text": "\u2386"} // Value: ⎆
Python:
char = '\u2386'
print(char) # Output: ⎆
Perl:
my $char = "\x{2386}";
print $char; # Output: ⎆
PHP:
$char = "\x{2386}";
echo $char; // Output: ⎆
Ruby:
char = "\u{2386}"
puts char # Output: ⎆
Rust:
let c = '\u{2386}';
println!("{}", c); // Output: ⎆
Go:
char := '\u2386'
fmt.Printf("%c\n", char) // Output: ⎆
CSS:
/* CSS content property */
.element::before {
content: "\002386"; /* 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%86
MD5:
17e7a1530d5219fbbd04747508f2d0df
SHA1:
ca9e0679fac6c3dbe2961bbe71fef185497d7b46
Base64:
4o6G