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