C:
char c = '\u96AD';
printf("%c\n", c); // Output: 隭
JavaScript:
const char = '\u96AD';
console.log(char); // Output: 隭
Java:
char c = '\u96AD';
System.out.println(c); // Output: 隭
JSON:
{"text": "\u96AD"} // Value: 隭
Python:
char = '\u96AD'
print(char) # Output: 隭
Perl:
my $char = "\x{96AD}";
print $char; # Output: 隭
PHP:
$char = "\x{96AD}";
echo $char; // Output: 隭
Ruby:
char = "\u{96AD}"
puts char # Output: 隭
Rust:
let c = '\u{96AD}';
println!("{}", c); // Output: 隭
Go:
char := '\u96AD'
fmt.Printf("%c\n", char) // Output: 隭
CSS:
/* CSS content property */
.element::before {
content: "\0096AD"; /* 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=%E9%9A%AD
MD5:
4f012e4715962f37df87ba68ea0e2110
SHA1:
4dbdcfd6c33aea48ac70628e1884b843c8f3c656
Base64:
6Zqt