C:
char c = '\u94CC';
printf("%c\n", c); // Output: 铌
JavaScript:
const char = '\u94CC';
console.log(char); // Output: 铌
Java:
char c = '\u94CC';
System.out.println(c); // Output: 铌
JSON:
{"text": "\u94CC"} // Value: 铌
Python:
char = '\u94CC'
print(char) # Output: 铌
Perl:
my $char = "\x{94CC}";
print $char; # Output: 铌
PHP:
$char = "\x{94CC}";
echo $char; // Output: 铌
Ruby:
char = "\u{94CC}"
puts char # Output: 铌
Rust:
let c = '\u{94CC}';
println!("{}", c); // Output: 铌
Go:
char := '\u94CC'
fmt.Printf("%c\n", char) // Output: 铌
CSS:
/* CSS content property */
.element::before {
content: "\0094CC"; /* 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%8C
MD5:
9d3e4594274721a66cf28e46163e9625
SHA1:
5ae821e4b1b489681429164852fb8b9b12ae7e2c
Base64:
6ZOM