C:
char c = '\u2882';
printf("%c\n", c); // Output: ⢂
JavaScript:
const char = '\u2882';
console.log(char); // Output: ⢂
Java:
char c = '\u2882';
System.out.println(c); // Output: ⢂
JSON:
{"text": "\u2882"} // Value: ⢂
Python:
char = '\u2882'
print(char) # Output: ⢂
Perl:
my $char = "\x{2882}";
print $char; # Output: ⢂
PHP:
$char = "\x{2882}";
echo $char; // Output: ⢂
Ruby:
char = "\u{2882}"
puts char # Output: ⢂
Rust:
let c = '\u{2882}';
println!("{}", c); // Output: ⢂
Go:
char := '\u2882'
fmt.Printf("%c\n", char) // Output: ⢂
CSS:
/* CSS content property */
.element::before {
content: "\002882"; /* 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%A2%82
MD5:
fb6d79dd27166b5f22e8bdaa8f2bc97f
SHA1:
ed832ead7fcf16b5ea3130efbf2765980fba7435
Base64:
4qKC