C:
char c = '\u9898';
printf("%c\n", c); // Output: 题
JavaScript:
const char = '\u9898';
console.log(char); // Output: 题
Java:
char c = '\u9898';
System.out.println(c); // Output: 题
JSON:
{"text": "\u9898"} // Value: 题
Python:
char = '\u9898'
print(char) # Output: 题
Perl:
my $char = "\x{9898}";
print $char; # Output: 题
PHP:
$char = "\x{9898}";
echo $char; // Output: 题
Ruby:
char = "\u{9898}"
puts char # Output: 题
Rust:
let c = '\u{9898}';
println!("{}", c); // Output: 题
Go:
char := '\u9898'
fmt.Printf("%c\n", char) // Output: 题
CSS:
/* CSS content property */
.element::before {
content: "\009898"; /* 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%A2%98
MD5:
c571208c82b133df3c3be6610ef8fde6
SHA1:
c9d6c8a34855cbe7833374e382d8ee2f7ad9efb3
Base64:
6aKY