C:
char c = '\u7917';
printf("%c\n", c); // Output: 礗
JavaScript:
const char = '\u7917';
console.log(char); // Output: 礗
Java:
char c = '\u7917';
System.out.println(c); // Output: 礗
JSON:
{"text": "\u7917"} // Value: 礗
Python:
char = '\u7917'
print(char) # Output: 礗
Perl:
my $char = "\x{7917}";
print $char; # Output: 礗
PHP:
$char = "\x{7917}";
echo $char; // Output: 礗
Ruby:
char = "\u{7917}"
puts char # Output: 礗
Rust:
let c = '\u{7917}';
println!("{}", c); // Output: 礗
Go:
char := '\u7917'
fmt.Printf("%c\n", char) // Output: 礗
CSS:
/* CSS content property */
.element::before {
content: "\007917"; /* 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%97
MD5:
841a8279c944c9d65678ca19c4964fed
SHA1:
229cfb0327c8047e3e45a5fd2b150f602d248d03
Base64:
56SX