C:
char c = '\u7DFA';
printf("%c\n", c); // Output: 緺
JavaScript:
const char = '\u7DFA';
console.log(char); // Output: 緺
Java:
char c = '\u7DFA';
System.out.println(c); // Output: 緺
JSON:
{"text": "\u7DFA"} // Value: 緺
Python:
char = '\u7DFA'
print(char) # Output: 緺
Perl:
my $char = "\x{7DFA}";
print $char; # Output: 緺
PHP:
$char = "\x{7DFA}";
echo $char; // Output: 緺
Ruby:
char = "\u{7DFA}"
puts char # Output: 緺
Rust:
let c = '\u{7DFA}';
println!("{}", c); // Output: 緺
Go:
char := '\u7DFA'
fmt.Printf("%c\n", char) // Output: 緺
CSS:
/* CSS content property */
.element::before {
content: "\007DFA"; /* 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=%E7%B7%BA
MD5:
88e01ca2d3948d6c3d4e91509e347bf2
SHA1:
f87ef959818ab4c9dcb4205d6f1ba358aaab7b36
Base64:
57e6