C:
char c = '\u7833';
printf("%c\n", c); // Output: 砳
JavaScript:
const char = '\u7833';
console.log(char); // Output: 砳
Java:
char c = '\u7833';
System.out.println(c); // Output: 砳
JSON:
{"text": "\u7833"} // Value: 砳
Python:
char = '\u7833'
print(char) # Output: 砳
Perl:
my $char = "\x{7833}";
print $char; # Output: 砳
PHP:
$char = "\x{7833}";
echo $char; // Output: 砳
Ruby:
char = "\u{7833}"
puts char # Output: 砳
Rust:
let c = '\u{7833}';
println!("{}", c); // Output: 砳
Go:
char := '\u7833'
fmt.Printf("%c\n", char) // Output: 砳
CSS:
/* CSS content property */
.element::before {
content: "\007833"; /* 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=%E7%A0%B3
MD5:
bfb5f60bcd26adab3c28a1200ac23c9f
SHA1:
a7392c7cfac6e4b3802b362c249f522cfa217f2e
Base64:
56Cz