C:
char c = '\u9808';
printf("%c\n", c); // Output: 須
JavaScript:
const char = '\u9808';
console.log(char); // Output: 須
Java:
char c = '\u9808';
System.out.println(c); // Output: 須
JSON:
{"text": "\u9808"} // Value: 須
Python:
char = '\u9808'
print(char) # Output: 須
Perl:
my $char = "\x{9808}";
print $char; # Output: 須
PHP:
$char = "\x{9808}";
echo $char; // Output: 須
Ruby:
char = "\u{9808}"
puts char # Output: 須
Rust:
let c = '\u{9808}';
println!("{}", c); // Output: 須
Go:
char := '\u9808'
fmt.Printf("%c\n", char) // Output: 須
CSS:
/* CSS content property */
.element::before {
content: "\009808"; /* 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=%E9%A0%88
MD5:
6f83fdc031af0cdefb60ee0eabfe6a65
SHA1:
127b67ffda1909f4b7ad8538c22c2301aad2a5c1
Base64:
6aCI