C:
char c = '\u1B9A';
printf("%c\n", c); // Output: ᮚ
JavaScript:
const char = '\u1B9A';
console.log(char); // Output: ᮚ
Java:
char c = '\u1B9A';
System.out.println(c); // Output: ᮚ
JSON:
{"text": "\u1B9A"} // Value: ᮚ
Python:
char = '\u1B9A'
print(char) # Output: ᮚ
Perl:
my $char = "\x{1B9A}";
print $char; # Output: ᮚ
PHP:
$char = "\x{1B9A}";
echo $char; // Output: ᮚ
Ruby:
char = "\u{1B9A}"
puts char # Output: ᮚ
Rust:
let c = '\u{1B9A}';
println!("{}", c); // Output: ᮚ
Go:
char := '\u1B9A'
fmt.Printf("%c\n", char) // Output: ᮚ
CSS:
/* CSS content property */
.element::before {
content: "\001B9A"; /* 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%AE%9A
MD5:
05b4cf321c9527e876448990f5c4e1d2
SHA1:
67967f4682d09895aa2dd3dce4d65ec648d14cdf
Base64:
4a6a