C:
char c = '\u1411';
printf("%c\n", c); // Output: ᐑ
JavaScript:
const char = '\u1411';
console.log(char); // Output: ᐑ
Java:
char c = '\u1411';
System.out.println(c); // Output: ᐑ
JSON:
{"text": "\u1411"} // Value: ᐑ
Python:
char = '\u1411'
print(char) # Output: ᐑ
Perl:
my $char = "\x{1411}";
print $char; # Output: ᐑ
PHP:
$char = "\x{1411}";
echo $char; // Output: ᐑ
Ruby:
char = "\u{1411}"
puts char # Output: ᐑ
Rust:
let c = '\u{1411}';
println!("{}", c); // Output: ᐑ
Go:
char := '\u1411'
fmt.Printf("%c\n", char) // Output: ᐑ
CSS:
/* CSS content property */
.element::before {
content: "\001411"; /* 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%90%91
MD5:
0bded148e89536bc73730ee71dd38a11
SHA1:
853ff394e74b453e07d5a7039210bcfcd433e21f
Base64:
4ZCR