C:
char c = '\u2832';
printf("%c\n", c); // Output: ⠲
JavaScript:
const char = '\u2832';
console.log(char); // Output: ⠲
Java:
char c = '\u2832';
System.out.println(c); // Output: ⠲
JSON:
{"text": "\u2832"} // Value: ⠲
Python:
char = '\u2832'
print(char) # Output: ⠲
Perl:
my $char = "\x{2832}";
print $char; # Output: ⠲
PHP:
$char = "\x{2832}";
echo $char; // Output: ⠲
Ruby:
char = "\u{2832}"
puts char # Output: ⠲
Rust:
let c = '\u{2832}';
println!("{}", c); // Output: ⠲
Go:
char := '\u2832'
fmt.Printf("%c\n", char) // Output: ⠲
CSS:
/* CSS content property */
.element::before {
content: "\002832"; /* 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%A0%B2
MD5:
8ffacaa63874a90b8a2461b78f7829c3
SHA1:
3006409f7cb032cda6e7c5b0c5671db2d3df6266
Base64:
4qCy