C:
char c = '\u2850';
printf("%c\n", c); // Output: ⡐
JavaScript:
const char = '\u2850';
console.log(char); // Output: ⡐
Java:
char c = '\u2850';
System.out.println(c); // Output: ⡐
JSON:
{"text": "\u2850"} // Value: ⡐
Python:
char = '\u2850'
print(char) # Output: ⡐
Perl:
my $char = "\x{2850}";
print $char; # Output: ⡐
PHP:
$char = "\x{2850}";
echo $char; // Output: ⡐
Ruby:
char = "\u{2850}"
puts char # Output: ⡐
Rust:
let c = '\u{2850}';
println!("{}", c); // Output: ⡐
Go:
char := '\u2850'
fmt.Printf("%c\n", char) // Output: ⡐
CSS:
/* CSS content property */
.element::before {
content: "\002850"; /* 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%90
MD5:
1f6abdc0dafa426834b877cc573c9b34
SHA1:
2c76162ec13fd5651f4b2167f62b1cb0bba33ad9
Base64:
4qGQ