C:
char c = '\u7195';
printf("%c\n", c); // Output: 熕
JavaScript:
const char = '\u7195';
console.log(char); // Output: 熕
Java:
char c = '\u7195';
System.out.println(c); // Output: 熕
JSON:
{"text": "\u7195"} // Value: 熕
Python:
char = '\u7195'
print(char) # Output: 熕
Perl:
my $char = "\x{7195}";
print $char; # Output: 熕
PHP:
$char = "\x{7195}";
echo $char; // Output: 熕
Ruby:
char = "\u{7195}"
puts char # Output: 熕
Rust:
let c = '\u{7195}';
println!("{}", c); // Output: 熕
Go:
char := '\u7195'
fmt.Printf("%c\n", char) // Output: 熕
CSS:
/* CSS content property */
.element::before {
content: "\007195"; /* 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%95
MD5:
546b44c7e7898225133f9ea700c64ce0
SHA1:
2580ce211112f7036c41ab46b71dd4bea1227c3a
Base64:
54aV