C:
char c = '\u7366';
printf("%c\n", c); // Output: 獦
JavaScript:
const char = '\u7366';
console.log(char); // Output: 獦
Java:
char c = '\u7366';
System.out.println(c); // Output: 獦
JSON:
{"text": "\u7366"} // Value: 獦
Python:
char = '\u7366'
print(char) # Output: 獦
Perl:
my $char = "\x{7366}";
print $char; # Output: 獦
PHP:
$char = "\x{7366}";
echo $char; // Output: 獦
Ruby:
char = "\u{7366}"
puts char # Output: 獦
Rust:
let c = '\u{7366}';
println!("{}", c); // Output: 獦
Go:
char := '\u7366'
fmt.Printf("%c\n", char) // Output: 獦
CSS:
/* CSS content property */
.element::before {
content: "\007366"; /* 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%8D%A6
MD5:
e95d817a98d94889bfe5043136bceb1d
SHA1:
290a7816235d3bbc24d34db2289234946e56565c
Base64:
542m