C:
char c = '\u9421';
printf("%c\n", c); // Output: 鐡
JavaScript:
const char = '\u9421';
console.log(char); // Output: 鐡
Java:
char c = '\u9421';
System.out.println(c); // Output: 鐡
JSON:
{"text": "\u9421"} // Value: 鐡
Python:
char = '\u9421'
print(char) # Output: 鐡
Perl:
my $char = "\x{9421}";
print $char; # Output: 鐡
PHP:
$char = "\x{9421}";
echo $char; // Output: 鐡
Ruby:
char = "\u{9421}"
puts char # Output: 鐡
Rust:
let c = '\u{9421}';
println!("{}", c); // Output: 鐡
Go:
char := '\u9421'
fmt.Printf("%c\n", char) // Output: 鐡
CSS:
/* CSS content property */
.element::before {
content: "\009421"; /* 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%90%A1
MD5:
8802bb9e8f13a4abc4706ea4a9e8f334
SHA1:
196f501feea793d717055a739aece345b8f49d0b
Base64:
6ZCh