C:
char c = '\u5030';
printf("%c\n", c); // Output: 倰
JavaScript:
const char = '\u5030';
console.log(char); // Output: 倰
Java:
char c = '\u5030';
System.out.println(c); // Output: 倰
JSON:
{"text": "\u5030"} // Value: 倰
Python:
char = '\u5030'
print(char) # Output: 倰
Perl:
my $char = "\x{5030}";
print $char; # Output: 倰
PHP:
$char = "\x{5030}";
echo $char; // Output: 倰
Ruby:
char = "\u{5030}"
puts char # Output: 倰
Rust:
let c = '\u{5030}';
println!("{}", c); // Output: 倰
Go:
char := '\u5030'
fmt.Printf("%c\n", char) // Output: 倰
CSS:
/* CSS content property */
.element::before {
content: "\005030"; /* 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=%E5%80%B0
MD5:
832de17d0454aad4629e12a5279ce966
SHA1:
c8de99b00ee732f1d129c37d003dbe3e23bae1b9
Base64:
5YCw