C:
char c = '\u8AB2';
printf("%c\n", c); // Output: 課
JavaScript:
const char = '\u8AB2';
console.log(char); // Output: 課
Java:
char c = '\u8AB2';
System.out.println(c); // Output: 課
JSON:
{"text": "\u8AB2"} // Value: 課
Python:
char = '\u8AB2'
print(char) # Output: 課
Perl:
my $char = "\x{8AB2}";
print $char; # Output: 課
PHP:
$char = "\x{8AB2}";
echo $char; // Output: 課
Ruby:
char = "\u{8AB2}"
puts char # Output: 課
Rust:
let c = '\u{8AB2}';
println!("{}", c); // Output: 課
Go:
char := '\u8AB2'
fmt.Printf("%c\n", char) // Output: 課
CSS:
/* CSS content property */
.element::before {
content: "\008AB2"; /* 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=%E8%AA%B2
MD5:
ca007b19fce86a3bf3e629350545f31a
SHA1:
ba6e4ede02e73d88acceb91be1c634638d1e6dd3
Base64:
6Kqy