C:
char c = '\u1390';
printf("%c\n", c); // Output: ᎐
JavaScript:
const char = '\u1390';
console.log(char); // Output: ᎐
Java:
char c = '\u1390';
System.out.println(c); // Output: ᎐
JSON:
{"text": "\u1390"} // Value: ᎐
Python:
char = '\u1390'
print(char) # Output: ᎐
Perl:
my $char = "\x{1390}";
print $char; # Output: ᎐
PHP:
$char = "\x{1390}";
echo $char; // Output: ᎐
Ruby:
char = "\u{1390}"
puts char # Output: ᎐
Rust:
let c = '\u{1390}';
println!("{}", c); // Output: ᎐
Go:
char := '\u1390'
fmt.Printf("%c\n", char) // Output: ᎐
CSS:
/* CSS content property */
.element::before {
content: "\001390"; /* 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%8E%90
MD5:
39637baced4a5754c5b05cbe25cfea50
SHA1:
f5819bbc4d732b03334e36d7dcc8159d181661a1
Base64:
4Y6Q