C:
char c = '\u13CF';
printf("%c\n", c); // Output: Ꮟ
JavaScript:
const char = '\u13CF';
console.log(char); // Output: Ꮟ
Java:
char c = '\u13CF';
System.out.println(c); // Output: Ꮟ
JSON:
{"text": "\u13CF"} // Value: Ꮟ
Python:
char = '\u13CF'
print(char) # Output: Ꮟ
Perl:
my $char = "\x{13CF}";
print $char; # Output: Ꮟ
PHP:
$char = "\x{13CF}";
echo $char; // Output: Ꮟ
Ruby:
char = "\u{13CF}"
puts char # Output: Ꮟ
Rust:
let c = '\u{13CF}';
println!("{}", c); // Output: Ꮟ
Go:
char := '\u13CF'
fmt.Printf("%c\n", char) // Output: Ꮟ
CSS:
/* CSS content property */
.element::before {
content: "\0013CF"; /* 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%8F%8F
MD5:
9e22dc4c2a8ded80bb38f134deded44d
SHA1:
a0e061d12ce91a07b37b362f64497b03562de278
Base64:
4Y+P