C:
char c = '\u5B78';
printf("%c\n", c); // Output: 學
JavaScript:
const char = '\u5B78';
console.log(char); // Output: 學
Java:
char c = '\u5B78';
System.out.println(c); // Output: 學
JSON:
{"text": "\u5B78"} // Value: 學
Python:
char = '\u5B78'
print(char) # Output: 學
Perl:
my $char = "\x{5B78}";
print $char; # Output: 學
PHP:
$char = "\x{5B78}";
echo $char; // Output: 學
Ruby:
char = "\u{5B78}"
puts char # Output: 學
Rust:
let c = '\u{5B78}';
println!("{}", c); // Output: 學
Go:
char := '\u5B78'
fmt.Printf("%c\n", char) // Output: 學
CSS:
/* CSS content property */
.element::before {
content: "\005B78"; /* 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=%E5%AD%B8
MD5:
f1df385347b5f2622d7e54f9a8165ba7
SHA1:
db6aa5c9d9652399ea1da9f20749f491b86fde08
Base64:
5a24