C:
char c = '\u2307';
printf("%c\n", c); // Output: ⌇
JavaScript:
const char = '\u2307';
console.log(char); // Output: ⌇
Java:
char c = '\u2307';
System.out.println(c); // Output: ⌇
JSON:
{"text": "\u2307"} // Value: ⌇
Python:
char = '\u2307'
print(char) # Output: ⌇
Perl:
my $char = "\x{2307}";
print $char; # Output: ⌇
PHP:
$char = "\x{2307}";
echo $char; // Output: ⌇
Ruby:
char = "\u{2307}"
puts char # Output: ⌇
Rust:
let c = '\u{2307}';
println!("{}", c); // Output: ⌇
Go:
char := '\u2307'
fmt.Printf("%c\n", char) // Output: ⌇
CSS:
/* CSS content property */
.element::before {
content: "\002307"; /* 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%8C%87
MD5:
fdab270429ec8c31c4b5e19f55e01a0c
SHA1:
15e620660abacf1ff48dc249f5468d534aa73bd3
Base64:
4oyH