C:
char c = '\u1612';
printf("%c\n", c); // Output: ᘒ
JavaScript:
const char = '\u1612';
console.log(char); // Output: ᘒ
Java:
char c = '\u1612';
System.out.println(c); // Output: ᘒ
JSON:
{"text": "\u1612"} // Value: ᘒ
Python:
char = '\u1612'
print(char) # Output: ᘒ
Perl:
my $char = "\x{1612}";
print $char; # Output: ᘒ
PHP:
$char = "\x{1612}";
echo $char; // Output: ᘒ
Ruby:
char = "\u{1612}"
puts char # Output: ᘒ
Rust:
let c = '\u{1612}';
println!("{}", c); // Output: ᘒ
Go:
char := '\u1612'
fmt.Printf("%c\n", char) // Output: ᘒ
CSS:
/* CSS content property */
.element::before {
content: "\001612"; /* 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=%E1%98%92
MD5:
e650d37d6633c60bbe9de20aab060359
SHA1:
ea01dfeb88c0af02244239cfe07a7a81e38ec76c
Base64:
4ZiS