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