C:
char c = '\uA671';
printf("%c\n", c); // Output: ꙱
JavaScript:
const char = '\uA671';
console.log(char); // Output: ꙱
Java:
char c = '\uA671';
System.out.println(c); // Output: ꙱
JSON:
{"text": "\uA671"} // Value: ꙱
Python:
char = '\uA671'
print(char) # Output: ꙱
Perl:
my $char = "\x{A671}";
print $char; # Output: ꙱
PHP:
$char = "\x{A671}";
echo $char; // Output: ꙱
Ruby:
char = "\u{A671}"
puts char # Output: ꙱
Rust:
let c = '\u{A671}';
println!("{}", c); // Output: ꙱
Go:
char := '\uA671'
fmt.Printf("%c\n", char) // Output: ꙱
CSS:
/* CSS content property */
.element::before {
content: "\00A671"; /* 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=%EA%99%B1
MD5:
d7a4b8efd44d94de6ead67b914a53084
SHA1:
a376f422ee443b878390318b84bd085a064ce2e5
Base64:
6pmx