C:
char c = '\u9DFE';
printf("%c\n", c); // Output: 鷾
JavaScript:
const char = '\u9DFE';
console.log(char); // Output: 鷾
Java:
char c = '\u9DFE';
System.out.println(c); // Output: 鷾
JSON:
{"text": "\u9DFE"} // Value: 鷾
Python:
char = '\u9DFE'
print(char) # Output: 鷾
Perl:
my $char = "\x{9DFE}";
print $char; # Output: 鷾
PHP:
$char = "\x{9DFE}";
echo $char; // Output: 鷾
Ruby:
char = "\u{9DFE}"
puts char # Output: 鷾
Rust:
let c = '\u{9DFE}';
println!("{}", c); // Output: 鷾
Go:
char := '\u9DFE'
fmt.Printf("%c\n", char) // Output: 鷾
CSS:
/* CSS content property */
.element::before {
content: "\009DFE"; /* 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%B7%BE
MD5:
cb5ea50cdc17941caa5c255cd53a1954
SHA1:
7822a13d23b797e25ac44f02fe5d3534f3566232
Base64:
6be+