C:
char c = '\u7A6D';
printf("%c\n", c); // Output: 穭
JavaScript:
const char = '\u7A6D';
console.log(char); // Output: 穭
Java:
char c = '\u7A6D';
System.out.println(c); // Output: 穭
JSON:
{"text": "\u7A6D"} // Value: 穭
Python:
char = '\u7A6D'
print(char) # Output: 穭
Perl:
my $char = "\x{7A6D}";
print $char; # Output: 穭
PHP:
$char = "\x{7A6D}";
echo $char; // Output: 穭
Ruby:
char = "\u{7A6D}"
puts char # Output: 穭
Rust:
let c = '\u{7A6D}';
println!("{}", c); // Output: 穭
Go:
char := '\u7A6D'
fmt.Printf("%c\n", char) // Output: 穭
CSS:
/* CSS content property */
.element::before {
content: "\007A6D"; /* 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%A9%AD
MD5:
89c7f9f772cf93fead6f32fbbd8eb6e9
SHA1:
bd9bfda365845ae1ed189d48dc4c1b0f289a922b
Base64:
56mt