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