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