C:
char c = '\u1B7A';
printf("%c\n", c); // Output: ᭺
JavaScript:
const char = '\u1B7A';
console.log(char); // Output: ᭺
Java:
char c = '\u1B7A';
System.out.println(c); // Output: ᭺
JSON:
{"text": "\u1B7A"} // Value: ᭺
Python:
char = '\u1B7A'
print(char) # Output: ᭺
Perl:
my $char = "\x{1B7A}";
print $char; # Output: ᭺
PHP:
$char = "\x{1B7A}";
echo $char; // Output: ᭺
Ruby:
char = "\u{1B7A}"
puts char # Output: ᭺
Rust:
let c = '\u{1B7A}';
println!("{}", c); // Output: ᭺
Go:
char := '\u1B7A'
fmt.Printf("%c\n", char) // Output: ᭺
CSS:
/* CSS content property */
.element::before {
content: "\001B7A"; /* 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%AD%BA
MD5:
625ab34b76b5966b0853a0893ebcae9e
SHA1:
75fd2a4fcd5ad5c05f006324f4e8698d02671d86
Base64:
4a26