C:
char c = '\u2C3E';
printf("%c\n", c); // Output: ⰾ
JavaScript:
const char = '\u2C3E';
console.log(char); // Output: ⰾ
Java:
char c = '\u2C3E';
System.out.println(c); // Output: ⰾ
JSON:
{"text": "\u2C3E"} // Value: ⰾ
Python:
char = '\u2C3E'
print(char) # Output: ⰾ
Perl:
my $char = "\x{2C3E}";
print $char; # Output: ⰾ
PHP:
$char = "\x{2C3E}";
echo $char; // Output: ⰾ
Ruby:
char = "\u{2C3E}"
puts char # Output: ⰾ
Rust:
let c = '\u{2C3E}';
println!("{}", c); // Output: ⰾ
Go:
char := '\u2C3E'
fmt.Printf("%c\n", char) // Output: ⰾ
CSS:
/* CSS content property */
.element::before {
content: "\002C3E"; /* 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%B0%BE
MD5:
819b8c72a570ddec0e5ac14a260a8d9b
SHA1:
d3c14688cb9de69c919fc2f575295add0985e448
Base64:
4rC+