C:
char c = '\u7360';
printf("%c\n", c); // Output: 獠
JavaScript:
const char = '\u7360';
console.log(char); // Output: 獠
Java:
char c = '\u7360';
System.out.println(c); // Output: 獠
JSON:
{"text": "\u7360"} // Value: 獠
Python:
char = '\u7360'
print(char) # Output: 獠
Perl:
my $char = "\x{7360}";
print $char; # Output: 獠
PHP:
$char = "\x{7360}";
echo $char; // Output: 獠
Ruby:
char = "\u{7360}"
puts char # Output: 獠
Rust:
let c = '\u{7360}';
println!("{}", c); // Output: 獠
Go:
char := '\u7360'
fmt.Printf("%c\n", char) // Output: 獠
CSS:
/* CSS content property */
.element::before {
content: "\007360"; /* 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%A0
MD5:
e474a7c80d72b3f7ce5c7af6519b4fc6
SHA1:
9dd2ba2e70b6251a526dc34a0c1281497f27cd8c
Base64:
542g