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