C:
char c = '\u2833';
printf("%c\n", c); // Output: ⠳
JavaScript:
const char = '\u2833';
console.log(char); // Output: ⠳
Java:
char c = '\u2833';
System.out.println(c); // Output: ⠳
JSON:
{"text": "\u2833"} // Value: ⠳
Python:
char = '\u2833'
print(char) # Output: ⠳
Perl:
my $char = "\x{2833}";
print $char; # Output: ⠳
PHP:
$char = "\x{2833}";
echo $char; // Output: ⠳
Ruby:
char = "\u{2833}"
puts char # Output: ⠳
Rust:
let c = '\u{2833}';
println!("{}", c); // Output: ⠳
Go:
char := '\u2833'
fmt.Printf("%c\n", char) // Output: ⠳
CSS:
/* CSS content property */
.element::before {
content: "\002833"; /* 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%B3
MD5:
34a5dc1978b26ba006745d14e334acd6
SHA1:
7009006c1a0fca69013d18bb0e798dad274af77d
Base64:
4qCz