C:
char c = '\u942F';
printf("%c\n", c); // Output: 鐯
JavaScript:
const char = '\u942F';
console.log(char); // Output: 鐯
Java:
char c = '\u942F';
System.out.println(c); // Output: 鐯
JSON:
{"text": "\u942F"} // Value: 鐯
Python:
char = '\u942F'
print(char) # Output: 鐯
Perl:
my $char = "\x{942F}";
print $char; # Output: 鐯
PHP:
$char = "\x{942F}";
echo $char; // Output: 鐯
Ruby:
char = "\u{942F}"
puts char # Output: 鐯
Rust:
let c = '\u{942F}';
println!("{}", c); // Output: 鐯
Go:
char := '\u942F'
fmt.Printf("%c\n", char) // Output: 鐯
CSS:
/* CSS content property */
.element::before {
content: "\00942F"; /* 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%AF
MD5:
2d31c469e4afc5345bf3eaa70c0f2206
SHA1:
769278f0e24e277cb859e1d20efec900d828cc93
Base64:
6ZCv