C:
char c = '\u790E';
printf("%c\n", c); // Output: 礎
JavaScript:
const char = '\u790E';
console.log(char); // Output: 礎
Java:
char c = '\u790E';
System.out.println(c); // Output: 礎
JSON:
{"text": "\u790E"} // Value: 礎
Python:
char = '\u790E'
print(char) # Output: 礎
Perl:
my $char = "\x{790E}";
print $char; # Output: 礎
PHP:
$char = "\x{790E}";
echo $char; // Output: 礎
Ruby:
char = "\u{790E}"
puts char # Output: 礎
Rust:
let c = '\u{790E}';
println!("{}", c); // Output: 礎
Go:
char := '\u790E'
fmt.Printf("%c\n", char) // Output: 礎
CSS:
/* CSS content property */
.element::before {
content: "\00790E"; /* 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%A4%8E
MD5:
4e9874e24c255731866ff0dacb68f58b
SHA1:
a0d50d8412f078332e2df1f9562fd8cca99ceea5
Base64:
56SO