C:
char c = '\u7DDF';
printf("%c\n", c); // Output: 緟
JavaScript:
const char = '\u7DDF';
console.log(char); // Output: 緟
Java:
char c = '\u7DDF';
System.out.println(c); // Output: 緟
JSON:
{"text": "\u7DDF"} // Value: 緟
Python:
char = '\u7DDF'
print(char) # Output: 緟
Perl:
my $char = "\x{7DDF}";
print $char; # Output: 緟
PHP:
$char = "\x{7DDF}";
echo $char; // Output: 緟
Ruby:
char = "\u{7DDF}"
puts char # Output: 緟
Rust:
let c = '\u{7DDF}';
println!("{}", c); // Output: 緟
Go:
char := '\u7DDF'
fmt.Printf("%c\n", char) // Output: 緟
CSS:
/* CSS content property */
.element::before {
content: "\007DDF"; /* 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%9F
MD5:
590fd52f8952b5febd868ea2332cd0f3
SHA1:
565522662b813f4556d786afde3d9300907d4ed4
Base64:
57ef