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