C:
char c = '\u2372';
printf("%c\n", c); // Output: ⍲
JavaScript:
const char = '\u2372';
console.log(char); // Output: ⍲
Java:
char c = '\u2372';
System.out.println(c); // Output: ⍲
JSON:
{"text": "\u2372"} // Value: ⍲
Python:
char = '\u2372'
print(char) # Output: ⍲
Perl:
my $char = "\x{2372}";
print $char; # Output: ⍲
PHP:
$char = "\x{2372}";
echo $char; // Output: ⍲
Ruby:
char = "\u{2372}"
puts char # Output: ⍲
Rust:
let c = '\u{2372}';
println!("{}", c); // Output: ⍲
Go:
char := '\u2372'
fmt.Printf("%c\n", char) // Output: ⍲
CSS:
/* CSS content property */
.element::before {
content: "\002372"; /* 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%8D%B2
MD5:
28d1092180446f60cbcfebece7d75bc4
SHA1:
4986f491ef8f2dbf82d7d8c20d938e2246f94c8e
Base64:
4o2y