C:
char c = '\u5F79';
printf("%c\n", c); // Output: 役
JavaScript:
const char = '\u5F79';
console.log(char); // Output: 役
Java:
char c = '\u5F79';
System.out.println(c); // Output: 役
JSON:
{"text": "\u5F79"} // Value: 役
Python:
char = '\u5F79'
print(char) # Output: 役
Perl:
my $char = "\x{5F79}";
print $char; # Output: 役
PHP:
$char = "\x{5F79}";
echo $char; // Output: 役
Ruby:
char = "\u{5F79}"
puts char # Output: 役
Rust:
let c = '\u{5F79}';
println!("{}", c); // Output: 役
Go:
char := '\u5F79'
fmt.Printf("%c\n", char) // Output: 役
CSS:
/* CSS content property */
.element::before {
content: "\005F79"; /* 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%BD%B9
MD5:
18cf80580b1bf9e9cd2e06043d03240c
SHA1:
c3e4e0f1ed02c705d79915613bdd523a0b9ff4b1
Base64:
5b25