C:
char c = '\u2870';
printf("%c\n", c); // Output: ⡰
JavaScript:
const char = '\u2870';
console.log(char); // Output: ⡰
Java:
char c = '\u2870';
System.out.println(c); // Output: ⡰
JSON:
{"text": "\u2870"} // Value: ⡰
Python:
char = '\u2870'
print(char) # Output: ⡰
Perl:
my $char = "\x{2870}";
print $char; # Output: ⡰
PHP:
$char = "\x{2870}";
echo $char; // Output: ⡰
Ruby:
char = "\u{2870}"
puts char # Output: ⡰
Rust:
let c = '\u{2870}';
println!("{}", c); // Output: ⡰
Go:
char := '\u2870'
fmt.Printf("%c\n", char) // Output: ⡰
CSS:
/* CSS content property */
.element::before {
content: "\002870"; /* 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%B0
MD5:
ecab23ba71e89e68ea09d3e916a6b3b8
SHA1:
36113714280f819ba29ceb11de300e2be2c08ff4
Base64:
4qGw