C:
char c = '\u1415';
printf("%c\n", c); // Output: ᐕ
JavaScript:
const char = '\u1415';
console.log(char); // Output: ᐕ
Java:
char c = '\u1415';
System.out.println(c); // Output: ᐕ
JSON:
{"text": "\u1415"} // Value: ᐕ
Python:
char = '\u1415'
print(char) # Output: ᐕ
Perl:
my $char = "\x{1415}";
print $char; # Output: ᐕ
PHP:
$char = "\x{1415}";
echo $char; // Output: ᐕ
Ruby:
char = "\u{1415}"
puts char # Output: ᐕ
Rust:
let c = '\u{1415}';
println!("{}", c); // Output: ᐕ
Go:
char := '\u1415'
fmt.Printf("%c\n", char) // Output: ᐕ
CSS:
/* CSS content property */
.element::before {
content: "\001415"; /* 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%95
MD5:
44ea4a2eaafb49f64bce69049b602759
SHA1:
c05d3ff489144db36d7892df1fccb0f6b9c1fb83
Base64:
4ZCV