C:
char c = '\u1397';
printf("%c\n", c); // Output: ᎗
JavaScript:
const char = '\u1397';
console.log(char); // Output: ᎗
Java:
char c = '\u1397';
System.out.println(c); // Output: ᎗
JSON:
{"text": "\u1397"} // Value: ᎗
Python:
char = '\u1397'
print(char) # Output: ᎗
Perl:
my $char = "\x{1397}";
print $char; # Output: ᎗
PHP:
$char = "\x{1397}";
echo $char; // Output: ᎗
Ruby:
char = "\u{1397}"
puts char # Output: ᎗
Rust:
let c = '\u{1397}';
println!("{}", c); // Output: ᎗
Go:
char := '\u1397'
fmt.Printf("%c\n", char) // Output: ᎗
CSS:
/* CSS content property */
.element::before {
content: "\001397"; /* 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%97
MD5:
dca0313fef9cd6ef1457275de3e2025a
SHA1:
79e4fe132115fc8d807242c8d46c1ec7ed063665
Base64:
4Y6X