C:
char c = '\u7512';
printf("%c\n", c); // Output: 甒
JavaScript:
const char = '\u7512';
console.log(char); // Output: 甒
Java:
char c = '\u7512';
System.out.println(c); // Output: 甒
JSON:
{"text": "\u7512"} // Value: 甒
Python:
char = '\u7512'
print(char) # Output: 甒
Perl:
my $char = "\x{7512}";
print $char; # Output: 甒
PHP:
$char = "\x{7512}";
echo $char; // Output: 甒
Ruby:
char = "\u{7512}"
puts char # Output: 甒
Rust:
let c = '\u{7512}';
println!("{}", c); // Output: 甒
Go:
char := '\u7512'
fmt.Printf("%c\n", char) // Output: 甒
CSS:
/* CSS content property */
.element::before {
content: "\007512"; /* 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%92
MD5:
ef20c14c9b72949c82926e47035d01fb
SHA1:
a13ea0f0457a019f084c9573c000e6cd72852995
Base64:
55SS