C:
char c = '\u9803';
printf("%c\n", c); // Output: 頃
JavaScript:
const char = '\u9803';
console.log(char); // Output: 頃
Java:
char c = '\u9803';
System.out.println(c); // Output: 頃
JSON:
{"text": "\u9803"} // Value: 頃
Python:
char = '\u9803'
print(char) # Output: 頃
Perl:
my $char = "\x{9803}";
print $char; # Output: 頃
PHP:
$char = "\x{9803}";
echo $char; // Output: 頃
Ruby:
char = "\u{9803}"
puts char # Output: 頃
Rust:
let c = '\u{9803}';
println!("{}", c); // Output: 頃
Go:
char := '\u9803'
fmt.Printf("%c\n", char) // Output: 頃
CSS:
/* CSS content property */
.element::before {
content: "\009803"; /* 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%83
MD5:
c688dea05da41dc6901bc54cb139c550
SHA1:
d946d5e8c88196583c5e174f5781a94397e9d8fd
Base64:
6aCD