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