C:
char c = '\u9833';
printf("%c\n", c); // Output: 頳
JavaScript:
const char = '\u9833';
console.log(char); // Output: 頳
Java:
char c = '\u9833';
System.out.println(c); // Output: 頳
JSON:
{"text": "\u9833"} // Value: 頳
Python:
char = '\u9833'
print(char) # Output: 頳
Perl:
my $char = "\x{9833}";
print $char; # Output: 頳
PHP:
$char = "\x{9833}";
echo $char; // Output: 頳
Ruby:
char = "\u{9833}"
puts char # Output: 頳
Rust:
let c = '\u{9833}';
println!("{}", c); // Output: 頳
Go:
char := '\u9833'
fmt.Printf("%c\n", char) // Output: 頳
CSS:
/* CSS content property */
.element::before {
content: "\009833"; /* 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%B3
MD5:
ad1dadb9cad0d2be30eb944937be9674
SHA1:
1b4c67c4fe4893dc56de63849701095c0f2fc53c
Base64:
6aCz