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