C:
char c = '\u5BA5';
printf("%c\n", c); // Output: 宥
JavaScript:
const char = '\u5BA5';
console.log(char); // Output: 宥
Java:
char c = '\u5BA5';
System.out.println(c); // Output: 宥
JSON:
{"text": "\u5BA5"} // Value: 宥
Python:
char = '\u5BA5'
print(char) # Output: 宥
Perl:
my $char = "\x{5BA5}";
print $char; # Output: 宥
PHP:
$char = "\x{5BA5}";
echo $char; // Output: 宥
Ruby:
char = "\u{5BA5}"
puts char # Output: 宥
Rust:
let c = '\u{5BA5}';
println!("{}", c); // Output: 宥
Go:
char := '\u5BA5'
fmt.Printf("%c\n", char) // Output: 宥
CSS:
/* CSS content property */
.element::before {
content: "\005BA5"; /* 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%AE%A5
MD5:
a624db71534c3ffd5f6b2b875c281d30
SHA1:
5319316399d86cb58e3d2ecae1c09cc1542542db
Base64:
5a6l