C:
char c = '\u7180';
printf("%c\n", c); // Output: 熀
JavaScript:
const char = '\u7180';
console.log(char); // Output: 熀
Java:
char c = '\u7180';
System.out.println(c); // Output: 熀
JSON:
{"text": "\u7180"} // Value: 熀
Python:
char = '\u7180'
print(char) # Output: 熀
Perl:
my $char = "\x{7180}";
print $char; # Output: 熀
PHP:
$char = "\x{7180}";
echo $char; // Output: 熀
Ruby:
char = "\u{7180}"
puts char # Output: 熀
Rust:
let c = '\u{7180}';
println!("{}", c); // Output: 熀
Go:
char := '\u7180'
fmt.Printf("%c\n", char) // Output: 熀
CSS:
/* CSS content property */
.element::before {
content: "\007180"; /* 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%86%80
MD5:
152f9a247914c5843facbbcf0380b65a
SHA1:
d12bcdf19109d957b762389298c5a8d17c0fe1ca
Base64:
54aA