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