C:
char c = '\u2871';
printf("%c\n", c); // Output: ⡱
JavaScript:
const char = '\u2871';
console.log(char); // Output: ⡱
Java:
char c = '\u2871';
System.out.println(c); // Output: ⡱
JSON:
{"text": "\u2871"} // Value: ⡱
Python:
char = '\u2871'
print(char) # Output: ⡱
Perl:
my $char = "\x{2871}";
print $char; # Output: ⡱
PHP:
$char = "\x{2871}";
echo $char; // Output: ⡱
Ruby:
char = "\u{2871}"
puts char # Output: ⡱
Rust:
let c = '\u{2871}';
println!("{}", c); // Output: ⡱
Go:
char := '\u2871'
fmt.Printf("%c\n", char) // Output: ⡱
CSS:
/* CSS content property */
.element::before {
content: "\002871"; /* 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%A1%B1
MD5:
241b4ea0e8ae05958fcb259ebf3092c9
SHA1:
c9671927b9377ca7967057e7f1396a4ebe66cf6f
Base64:
4qGx