C:
char c = '\u94DF';
printf("%c\n", c); // Output: 铟
JavaScript:
const char = '\u94DF';
console.log(char); // Output: 铟
Java:
char c = '\u94DF';
System.out.println(c); // Output: 铟
JSON:
{"text": "\u94DF"} // Value: 铟
Python:
char = '\u94DF'
print(char) # Output: 铟
Perl:
my $char = "\x{94DF}";
print $char; # Output: 铟
PHP:
$char = "\x{94DF}";
echo $char; // Output: 铟
Ruby:
char = "\u{94DF}"
puts char # Output: 铟
Rust:
let c = '\u{94DF}';
println!("{}", c); // Output: 铟
Go:
char := '\u94DF'
fmt.Printf("%c\n", char) // Output: 铟
CSS:
/* CSS content property */
.element::before {
content: "\0094DF"; /* 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=%E9%93%9F
MD5:
2529f0e50403d1b57a19bc9a05c34e5e
SHA1:
ac66e438d55816f5fecfa3f074678c19f996fee2
Base64:
6ZOf