C:
char c = '\u1398';
printf("%c\n", c); // Output: ᎘
JavaScript:
const char = '\u1398';
console.log(char); // Output: ᎘
Java:
char c = '\u1398';
System.out.println(c); // Output: ᎘
JSON:
{"text": "\u1398"} // Value: ᎘
Python:
char = '\u1398'
print(char) # Output: ᎘
Perl:
my $char = "\x{1398}";
print $char; # Output: ᎘
PHP:
$char = "\x{1398}";
echo $char; // Output: ᎘
Ruby:
char = "\u{1398}"
puts char # Output: ᎘
Rust:
let c = '\u{1398}';
println!("{}", c); // Output: ᎘
Go:
char := '\u1398'
fmt.Printf("%c\n", char) // Output: ᎘
CSS:
/* CSS content property */
.element::before {
content: "\001398"; /* 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%98
MD5:
c31277f7a0ba25630ac054cb8dc79a76
SHA1:
73846fe79e144560ad409aaeff53eabe517bdd1d
Base64:
4Y6Y