C:
char c = '\u1850';
printf("%c\n", c); // Output: ᡐ
JavaScript:
const char = '\u1850';
console.log(char); // Output: ᡐ
Java:
char c = '\u1850';
System.out.println(c); // Output: ᡐ
JSON:
{"text": "\u1850"} // Value: ᡐ
Python:
char = '\u1850'
print(char) # Output: ᡐ
Perl:
my $char = "\x{1850}";
print $char; # Output: ᡐ
PHP:
$char = "\x{1850}";
echo $char; // Output: ᡐ
Ruby:
char = "\u{1850}"
puts char # Output: ᡐ
Rust:
let c = '\u{1850}';
println!("{}", c); // Output: ᡐ
Go:
char := '\u1850'
fmt.Printf("%c\n", char) // Output: ᡐ
CSS:
/* CSS content property */
.element::before {
content: "\001850"; /* 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%A1%90
MD5:
032424916a9951e2b5b036643ebd196a
SHA1:
932fac9d5258fdedf7590cb72d48ec3147eab525
Base64:
4aGQ