C:
char c = '\u2865';
printf("%c\n", c); // Output: ⡥
JavaScript:
const char = '\u2865';
console.log(char); // Output: ⡥
Java:
char c = '\u2865';
System.out.println(c); // Output: ⡥
JSON:
{"text": "\u2865"} // Value: ⡥
Python:
char = '\u2865'
print(char) # Output: ⡥
Perl:
my $char = "\x{2865}";
print $char; # Output: ⡥
PHP:
$char = "\x{2865}";
echo $char; // Output: ⡥
Ruby:
char = "\u{2865}"
puts char # Output: ⡥
Rust:
let c = '\u{2865}';
println!("{}", c); // Output: ⡥
Go:
char := '\u2865'
fmt.Printf("%c\n", char) // Output: ⡥
CSS:
/* CSS content property */
.element::before {
content: "\002865"; /* 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%A5
MD5:
bc8a63365f4a06721efa35c17e8a2c50
SHA1:
896d4c3e34f8b66d5cf719acc4ae365961a2468b
Base64:
4qGl