C:
char c = '\u1808';
printf("%c\n", c); // Output: ᠈
JavaScript:
const char = '\u1808';
console.log(char); // Output: ᠈
Java:
char c = '\u1808';
System.out.println(c); // Output: ᠈
JSON:
{"text": "\u1808"} // Value: ᠈
Python:
char = '\u1808'
print(char) # Output: ᠈
Perl:
my $char = "\x{1808}";
print $char; # Output: ᠈
PHP:
$char = "\x{1808}";
echo $char; // Output: ᠈
Ruby:
char = "\u{1808}"
puts char # Output: ᠈
Rust:
let c = '\u{1808}';
println!("{}", c); // Output: ᠈
Go:
char := '\u1808'
fmt.Printf("%c\n", char) // Output: ᠈
CSS:
/* CSS content property */
.element::before {
content: "\001808"; /* 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%A0%88
MD5:
71b71a596096a5aeec1bd8d80cb680fb
SHA1:
2520c13a2eab84e915c0ef4638ae39339c2f79bd
Base64:
4aCI