C:
char c = '\u705C';
printf("%c\n", c); // Output: 灜
JavaScript:
const char = '\u705C';
console.log(char); // Output: 灜
Java:
char c = '\u705C';
System.out.println(c); // Output: 灜
JSON:
{"text": "\u705C"} // Value: 灜
Python:
char = '\u705C'
print(char) # Output: 灜
Perl:
my $char = "\x{705C}";
print $char; # Output: 灜
PHP:
$char = "\x{705C}";
echo $char; // Output: 灜
Ruby:
char = "\u{705C}"
puts char # Output: 灜
Rust:
let c = '\u{705C}';
println!("{}", c); // Output: 灜
Go:
char := '\u705C'
fmt.Printf("%c\n", char) // Output: 灜
CSS:
/* CSS content property */
.element::before {
content: "\00705C"; /* 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%81%9C
MD5:
c3086e07d9348089ef93e9acac710d4e
SHA1:
8b9d522e136da5d268556c0593427066ac753634
Base64:
54Gc