C:
char c = '\u9801';
printf("%c\n", c); // Output: 頁
JavaScript:
const char = '\u9801';
console.log(char); // Output: 頁
Java:
char c = '\u9801';
System.out.println(c); // Output: 頁
JSON:
{"text": "\u9801"} // Value: 頁
Python:
char = '\u9801'
print(char) # Output: 頁
Perl:
my $char = "\x{9801}";
print $char; # Output: 頁
PHP:
$char = "\x{9801}";
echo $char; // Output: 頁
Ruby:
char = "\u{9801}"
puts char # Output: 頁
Rust:
let c = '\u{9801}';
println!("{}", c); // Output: 頁
Go:
char := '\u9801'
fmt.Printf("%c\n", char) // Output: 頁
CSS:
/* CSS content property */
.element::before {
content: "\009801"; /* 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%A0%81
MD5:
0543aa0c8a047adce035240046898cef
SHA1:
d04825997b36d873477f78f37c4129ac0dcdbfe5
Base64:
6aCB