C:
char c = '\u1BB9';
printf("%c\n", c); // Output: ᮹
JavaScript:
const char = '\u1BB9';
console.log(char); // Output: ᮹
Java:
char c = '\u1BB9';
System.out.println(c); // Output: ᮹
JSON:
{"text": "\u1BB9"} // Value: ᮹
Python:
char = '\u1BB9'
print(char) # Output: ᮹
Perl:
my $char = "\x{1BB9}";
print $char; # Output: ᮹
PHP:
$char = "\x{1BB9}";
echo $char; // Output: ᮹
Ruby:
char = "\u{1BB9}"
puts char # Output: ᮹
Rust:
let c = '\u{1BB9}';
println!("{}", c); // Output: ᮹
Go:
char := '\u1BB9'
fmt.Printf("%c\n", char) // Output: ᮹
CSS:
/* CSS content property */
.element::before {
content: "\001BB9"; /* 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%B9
MD5:
7406552c5b900574f07aa7aa1da89e50
SHA1:
1dd7feb9d1326a481d39289f215b7a016c645e2c
Base64:
4a65