C:
char c = '\u2864';
printf("%c\n", c); // Output: ⡤
JavaScript:
const char = '\u2864';
console.log(char); // Output: ⡤
Java:
char c = '\u2864';
System.out.println(c); // Output: ⡤
JSON:
{"text": "\u2864"} // Value: ⡤
Python:
char = '\u2864'
print(char) # Output: ⡤
Perl:
my $char = "\x{2864}";
print $char; # Output: ⡤
PHP:
$char = "\x{2864}";
echo $char; // Output: ⡤
Ruby:
char = "\u{2864}"
puts char # Output: ⡤
Rust:
let c = '\u{2864}';
println!("{}", c); // Output: ⡤
Go:
char := '\u2864'
fmt.Printf("%c\n", char) // Output: ⡤
CSS:
/* CSS content property */
.element::before {
content: "\002864"; /* 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%A4
MD5:
67eb6075b11e5ec85fd3760cd0dc02e7
SHA1:
5fd60c189105deda873012b321dc09f78aca9f48
Base64:
4qGk