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