C:
char c = '\u2807';
printf("%c\n", c); // Output: ⠇
JavaScript:
const char = '\u2807';
console.log(char); // Output: ⠇
Java:
char c = '\u2807';
System.out.println(c); // Output: ⠇
JSON:
{"text": "\u2807"} // Value: ⠇
Python:
char = '\u2807'
print(char) # Output: ⠇
Perl:
my $char = "\x{2807}";
print $char; # Output: ⠇
PHP:
$char = "\x{2807}";
echo $char; // Output: ⠇
Ruby:
char = "\u{2807}"
puts char # Output: ⠇
Rust:
let c = '\u{2807}';
println!("{}", c); // Output: ⠇
Go:
char := '\u2807'
fmt.Printf("%c\n", char) // Output: ⠇
CSS:
/* CSS content property */
.element::before {
content: "\002807"; /* 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%A0%87
MD5:
5e88929465d4e4720494ad46169ebd6f
SHA1:
56e2fd5b611ed5df5bd66391e52091b432f3f6fd
Base64:
4qCH