C:
char c = '\u1385';
printf("%c\n", c); // Output: ᎅ
JavaScript:
const char = '\u1385';
console.log(char); // Output: ᎅ
Java:
char c = '\u1385';
System.out.println(c); // Output: ᎅ
JSON:
{"text": "\u1385"} // Value: ᎅ
Python:
char = '\u1385'
print(char) # Output: ᎅ
Perl:
my $char = "\x{1385}";
print $char; # Output: ᎅ
PHP:
$char = "\x{1385}";
echo $char; // Output: ᎅ
Ruby:
char = "\u{1385}"
puts char # Output: ᎅ
Rust:
let c = '\u{1385}';
println!("{}", c); // Output: ᎅ
Go:
char := '\u1385'
fmt.Printf("%c\n", char) // Output: ᎅ
CSS:
/* CSS content property */
.element::before {
content: "\001385"; /* 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%85
MD5:
16b58b095b07bc807afdbf0afac6a042
SHA1:
f319be3406606a6f93edbb78b2c8fd3fd345f308
Base64:
4Y6F