C:
char c = '\u1650';
printf("%c\n", c); // Output: ᙐ
JavaScript:
const char = '\u1650';
console.log(char); // Output: ᙐ
Java:
char c = '\u1650';
System.out.println(c); // Output: ᙐ
JSON:
{"text": "\u1650"} // Value: ᙐ
Python:
char = '\u1650'
print(char) # Output: ᙐ
Perl:
my $char = "\x{1650}";
print $char; # Output: ᙐ
PHP:
$char = "\x{1650}";
echo $char; // Output: ᙐ
Ruby:
char = "\u{1650}"
puts char # Output: ᙐ
Rust:
let c = '\u{1650}';
println!("{}", c); // Output: ᙐ
Go:
char := '\u1650'
fmt.Printf("%c\n", char) // Output: ᙐ
CSS:
/* CSS content property */
.element::before {
content: "\001650"; /* 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%99%90
MD5:
dec1f880f4b5ba96c2fdbe2d2705c1c1
SHA1:
62568e1815cf7d68310a01b48ded8ae856769871
Base64:
4ZmQ