C:
char c = '\u8192';
printf("%c\n", c); // Output: 膒
JavaScript:
const char = '\u8192';
console.log(char); // Output: 膒
Java:
char c = '\u8192';
System.out.println(c); // Output: 膒
JSON:
{"text": "\u8192"} // Value: 膒
Python:
char = '\u8192'
print(char) # Output: 膒
Perl:
my $char = "\x{8192}";
print $char; # Output: 膒
PHP:
$char = "\x{8192}";
echo $char; // Output: 膒
Ruby:
char = "\u{8192}"
puts char # Output: 膒
Rust:
let c = '\u{8192}';
println!("{}", c); // Output: 膒
Go:
char := '\u8192'
fmt.Printf("%c\n", char) // Output: 膒
CSS:
/* CSS content property */
.element::before {
content: "\008192"; /* 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=%E8%86%92
MD5:
55054685ee4efc4f94165438049f775c
SHA1:
75144b521acb3c77aa783ca47cdd5afcd9acedd9
Base64:
6IaS