C:
char c = '\u7508';
printf("%c\n", c); // Output: 甈
JavaScript:
const char = '\u7508';
console.log(char); // Output: 甈
Java:
char c = '\u7508';
System.out.println(c); // Output: 甈
JSON:
{"text": "\u7508"} // Value: 甈
Python:
char = '\u7508'
print(char) # Output: 甈
Perl:
my $char = "\x{7508}";
print $char; # Output: 甈
PHP:
$char = "\x{7508}";
echo $char; // Output: 甈
Ruby:
char = "\u{7508}"
puts char # Output: 甈
Rust:
let c = '\u{7508}';
println!("{}", c); // Output: 甈
Go:
char := '\u7508'
fmt.Printf("%c\n", char) // Output: 甈
CSS:
/* CSS content property */
.element::before {
content: "\007508"; /* 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%94%88
MD5:
4033fc8832ec231778b33a5f75698822
SHA1:
febc3b467f53dc4f52474cb7b420208762fa306e
Base64:
55SI