C:
char c = '\u7AD2';
printf("%c\n", c); // Output: 竒
JavaScript:
const char = '\u7AD2';
console.log(char); // Output: 竒
Java:
char c = '\u7AD2';
System.out.println(c); // Output: 竒
JSON:
{"text": "\u7AD2"} // Value: 竒
Python:
char = '\u7AD2'
print(char) # Output: 竒
Perl:
my $char = "\x{7AD2}";
print $char; # Output: 竒
PHP:
$char = "\x{7AD2}";
echo $char; // Output: 竒
Ruby:
char = "\u{7AD2}"
puts char # Output: 竒
Rust:
let c = '\u{7AD2}';
println!("{}", c); // Output: 竒
Go:
char := '\u7AD2'
fmt.Printf("%c\n", char) // Output: 竒
CSS:
/* CSS content property */
.element::before {
content: "\007AD2"; /* 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%AB%92
MD5:
03f024bde237f4b823b77c8282222479
SHA1:
5bfdbf8286f8b9cd1e146dbade9119249f72af5f
Base64:
56uS