C:
char c = '\u7B74';
printf("%c\n", c); // Output: 筴
JavaScript:
const char = '\u7B74';
console.log(char); // Output: 筴
Java:
char c = '\u7B74';
System.out.println(c); // Output: 筴
JSON:
{"text": "\u7B74"} // Value: 筴
Python:
char = '\u7B74'
print(char) # Output: 筴
Perl:
my $char = "\x{7B74}";
print $char; # Output: 筴
PHP:
$char = "\x{7B74}";
echo $char; // Output: 筴
Ruby:
char = "\u{7B74}"
puts char # Output: 筴
Rust:
let c = '\u{7B74}';
println!("{}", c); // Output: 筴
Go:
char := '\u7B74'
fmt.Printf("%c\n", char) // Output: 筴
CSS:
/* CSS content property */
.element::before {
content: "\007B74"; /* 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%B4
MD5:
05a0255617133dced28d5df920496e47
SHA1:
143874c50f0ebb0e62ed157ed570f7e0e7374106
Base64:
5620