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