C:
char c = '\u8183';
printf("%c\n", c); // Output: 膃
JavaScript:
const char = '\u8183';
console.log(char); // Output: 膃
Java:
char c = '\u8183';
System.out.println(c); // Output: 膃
JSON:
{"text": "\u8183"} // Value: 膃
Python:
char = '\u8183'
print(char) # Output: 膃
Perl:
my $char = "\x{8183}";
print $char; # Output: 膃
PHP:
$char = "\x{8183}";
echo $char; // Output: 膃
Ruby:
char = "\u{8183}"
puts char # Output: 膃
Rust:
let c = '\u{8183}';
println!("{}", c); // Output: 膃
Go:
char := '\u8183'
fmt.Printf("%c\n", char) // Output: 膃
CSS:
/* CSS content property */
.element::before {
content: "\008183"; /* 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%83
MD5:
48cf34409b85bed07c393754121b1f4f
SHA1:
801ebee8aef9d4fcab928ae71afb7deba4fa52b4
Base64:
6IaD