C:
char c = '\u7985';
printf("%c\n", c); // Output: 禅
JavaScript:
const char = '\u7985';
console.log(char); // Output: 禅
Java:
char c = '\u7985';
System.out.println(c); // Output: 禅
JSON:
{"text": "\u7985"} // Value: 禅
Python:
char = '\u7985'
print(char) # Output: 禅
Perl:
my $char = "\x{7985}";
print $char; # Output: 禅
PHP:
$char = "\x{7985}";
echo $char; // Output: 禅
Ruby:
char = "\u{7985}"
puts char # Output: 禅
Rust:
let c = '\u{7985}';
println!("{}", c); // Output: 禅
Go:
char := '\u7985'
fmt.Printf("%c\n", char) // Output: 禅
CSS:
/* CSS content property */
.element::before {
content: "\007985"; /* 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%A6%85
MD5:
f015e4ff3002411e49e5962c16729187
SHA1:
dcd2eb27d23ce47a34c6c67b7e2549b4d0af8e29
Base64:
56aF