C:
char c = '\u2872';
printf("%c\n", c); // Output: ⡲
JavaScript:
const char = '\u2872';
console.log(char); // Output: ⡲
Java:
char c = '\u2872';
System.out.println(c); // Output: ⡲
JSON:
{"text": "\u2872"} // Value: ⡲
Python:
char = '\u2872'
print(char) # Output: ⡲
Perl:
my $char = "\x{2872}";
print $char; # Output: ⡲
PHP:
$char = "\x{2872}";
echo $char; // Output: ⡲
Ruby:
char = "\u{2872}"
puts char # Output: ⡲
Rust:
let c = '\u{2872}';
println!("{}", c); // Output: ⡲
Go:
char := '\u2872'
fmt.Printf("%c\n", char) // Output: ⡲
CSS:
/* CSS content property */
.element::before {
content: "\002872"; /* 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%B2
MD5:
73924cdf71f331867c0229f99359f932
SHA1:
aaab78c3ebff7bd057fe04388bf5009a0bacd0ef
Base64:
4qGy