C:
char c = '\u8F30';
printf("%c\n", c); // Output: 輰
JavaScript:
const char = '\u8F30';
console.log(char); // Output: 輰
Java:
char c = '\u8F30';
System.out.println(c); // Output: 輰
JSON:
{"text": "\u8F30"} // Value: 輰
Python:
char = '\u8F30'
print(char) # Output: 輰
Perl:
my $char = "\x{8F30}";
print $char; # Output: 輰
PHP:
$char = "\x{8F30}";
echo $char; // Output: 輰
Ruby:
char = "\u{8F30}"
puts char # Output: 輰
Rust:
let c = '\u{8F30}';
println!("{}", c); // Output: 輰
Go:
char := '\u8F30'
fmt.Printf("%c\n", char) // Output: 輰
CSS:
/* CSS content property */
.element::before {
content: "\008F30"; /* 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%BC%B0
MD5:
4410949231240b62e3a29796ae108260
SHA1:
3485b69f6c01f496751ca36af0b46ef0adfc0c8e
Base64:
6Lyw