C:
char c = '\u9429';
printf("%c\n", c); // Output: 鐩
JavaScript:
const char = '\u9429';
console.log(char); // Output: 鐩
Java:
char c = '\u9429';
System.out.println(c); // Output: 鐩
JSON:
{"text": "\u9429"} // Value: 鐩
Python:
char = '\u9429'
print(char) # Output: 鐩
Perl:
my $char = "\x{9429}";
print $char; # Output: 鐩
PHP:
$char = "\x{9429}";
echo $char; // Output: 鐩
Ruby:
char = "\u{9429}"
puts char # Output: 鐩
Rust:
let c = '\u{9429}';
println!("{}", c); // Output: 鐩
Go:
char := '\u9429'
fmt.Printf("%c\n", char) // Output: 鐩
CSS:
/* CSS content property */
.element::before {
content: "\009429"; /* 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%A9
MD5:
ed9e3e7d9c7885fead5560f822b4b635
SHA1:
364f52cf2e8dbd92b72bccfaef1833fa92b4c810
Base64:
6ZCp