C:
char c = '\u9425';
printf("%c\n", c); // Output: 鐥
JavaScript:
const char = '\u9425';
console.log(char); // Output: 鐥
Java:
char c = '\u9425';
System.out.println(c); // Output: 鐥
JSON:
{"text": "\u9425"} // Value: 鐥
Python:
char = '\u9425'
print(char) # Output: 鐥
Perl:
my $char = "\x{9425}";
print $char; # Output: 鐥
PHP:
$char = "\x{9425}";
echo $char; // Output: 鐥
Ruby:
char = "\u{9425}"
puts char # Output: 鐥
Rust:
let c = '\u{9425}';
println!("{}", c); // Output: 鐥
Go:
char := '\u9425'
fmt.Printf("%c\n", char) // Output: 鐥
CSS:
/* CSS content property */
.element::before {
content: "\009425"; /* 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%A5
MD5:
c462522331d47bdc1eaae9dc9d6d9d71
SHA1:
a28e86e8401cd3ddf92d6ec34c9a1d30f62d2bf3
Base64:
6ZCl