C:
char c = '\u7DD2';
printf("%c\n", c); // Output: 緒
JavaScript:
const char = '\u7DD2';
console.log(char); // Output: 緒
Java:
char c = '\u7DD2';
System.out.println(c); // Output: 緒
JSON:
{"text": "\u7DD2"} // Value: 緒
Python:
char = '\u7DD2'
print(char) # Output: 緒
Perl:
my $char = "\x{7DD2}";
print $char; # Output: 緒
PHP:
$char = "\x{7DD2}";
echo $char; // Output: 緒
Ruby:
char = "\u{7DD2}"
puts char # Output: 緒
Rust:
let c = '\u{7DD2}';
println!("{}", c); // Output: 緒
Go:
char := '\u7DD2'
fmt.Printf("%c\n", char) // Output: 緒
CSS:
/* CSS content property */
.element::before {
content: "\007DD2"; /* 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%92
MD5:
57a4a4ab791cd5ed5166873759a29afb
SHA1:
04b3e1394c8ae251cfa6f3b086232c69a86b8add
Base64:
57eS