C:
char c = '\u9813';
printf("%c\n", c); // Output: 頓
JavaScript:
const char = '\u9813';
console.log(char); // Output: 頓
Java:
char c = '\u9813';
System.out.println(c); // Output: 頓
JSON:
{"text": "\u9813"} // Value: 頓
Python:
char = '\u9813'
print(char) # Output: 頓
Perl:
my $char = "\x{9813}";
print $char; # Output: 頓
PHP:
$char = "\x{9813}";
echo $char; // Output: 頓
Ruby:
char = "\u{9813}"
puts char # Output: 頓
Rust:
let c = '\u{9813}';
println!("{}", c); // Output: 頓
Go:
char := '\u9813'
fmt.Printf("%c\n", char) // Output: 頓
CSS:
/* CSS content property */
.element::before {
content: "\009813"; /* 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%93
MD5:
543b126ebfdbffea518841b9f6f5dc48
SHA1:
34b93563e9e019708456d66d634057001ec09e70
Base64:
6aCT