C:
char c = '\u1807';
printf("%c\n", c); // Output: ᠇
JavaScript:
const char = '\u1807';
console.log(char); // Output: ᠇
Java:
char c = '\u1807';
System.out.println(c); // Output: ᠇
JSON:
{"text": "\u1807"} // Value: ᠇
Python:
char = '\u1807'
print(char) # Output: ᠇
Perl:
my $char = "\x{1807}";
print $char; # Output: ᠇
PHP:
$char = "\x{1807}";
echo $char; // Output: ᠇
Ruby:
char = "\u{1807}"
puts char # Output: ᠇
Rust:
let c = '\u{1807}';
println!("{}", c); // Output: ᠇
Go:
char := '\u1807'
fmt.Printf("%c\n", char) // Output: ᠇
CSS:
/* CSS content property */
.element::before {
content: "\001807"; /* 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%87
MD5:
3ed8656f34a6ade9d8766b9b41c018d4
SHA1:
866e5c0272c52403f7a5f2ed2fee86036060e743
Base64:
4aCH