C:
char c = '\u6789';
printf("%c\n", c); // Output: 枉
JavaScript:
const char = '\u6789';
console.log(char); // Output: 枉
Java:
char c = '\u6789';
System.out.println(c); // Output: 枉
JSON:
{"text": "\u6789"} // Value: 枉
Python:
char = '\u6789'
print(char) # Output: 枉
Perl:
my $char = "\x{6789}";
print $char; # Output: 枉
PHP:
$char = "\x{6789}";
echo $char; // Output: 枉
Ruby:
char = "\u{6789}"
puts char # Output: 枉
Rust:
let c = '\u{6789}';
println!("{}", c); // Output: 枉
Go:
char := '\u6789'
fmt.Printf("%c\n", char) // Output: 枉
CSS:
/* CSS content property */
.element::before {
content: "\006789"; /* 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=%E6%9E%89
MD5:
967f8e5b78919c1dc7bdb560c330c5d0
SHA1:
73f5d059fcaab5e20f0667ec2a0186d21d46de6c
Base64:
5p6J