C:
char c = '\u7B48';
printf("%c\n", c); // Output: 筈
JavaScript:
const char = '\u7B48';
console.log(char); // Output: 筈
Java:
char c = '\u7B48';
System.out.println(c); // Output: 筈
JSON:
{"text": "\u7B48"} // Value: 筈
Python:
char = '\u7B48'
print(char) # Output: 筈
Perl:
my $char = "\x{7B48}";
print $char; # Output: 筈
PHP:
$char = "\x{7B48}";
echo $char; // Output: 筈
Ruby:
char = "\u{7B48}"
puts char # Output: 筈
Rust:
let c = '\u{7B48}';
println!("{}", c); // Output: 筈
Go:
char := '\u7B48'
fmt.Printf("%c\n", char) // Output: 筈
CSS:
/* CSS content property */
.element::before {
content: "\007B48"; /* 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%AD%88
MD5:
3f181bd8670395b6de19c4b4ed55ed25
SHA1:
0a9dad582fd1606cb10dba0e528e3b049d425bf1
Base64:
562I