C:
char c = '\u8630';
printf("%c\n", c); // Output: 蘰
JavaScript:
const char = '\u8630';
console.log(char); // Output: 蘰
Java:
char c = '\u8630';
System.out.println(c); // Output: 蘰
JSON:
{"text": "\u8630"} // Value: 蘰
Python:
char = '\u8630'
print(char) # Output: 蘰
Perl:
my $char = "\x{8630}";
print $char; # Output: 蘰
PHP:
$char = "\x{8630}";
echo $char; // Output: 蘰
Ruby:
char = "\u{8630}"
puts char # Output: 蘰
Rust:
let c = '\u{8630}';
println!("{}", c); // Output: 蘰
Go:
char := '\u8630'
fmt.Printf("%c\n", char) // Output: 蘰
CSS:
/* CSS content property */
.element::before {
content: "\008630"; /* 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%98%B0
MD5:
a81dbc44e9de662371b430cdb40a1072
SHA1:
41a5c3841f8692d307453766e0cb35e18f895fd7
Base64:
6Jiw