C:
char c = '\u9014';
printf("%c\n", c); // Output: 途
JavaScript:
const char = '\u9014';
console.log(char); // Output: 途
Java:
char c = '\u9014';
System.out.println(c); // Output: 途
JSON:
{"text": "\u9014"} // Value: 途
Python:
char = '\u9014'
print(char) # Output: 途
Perl:
my $char = "\x{9014}";
print $char; # Output: 途
PHP:
$char = "\x{9014}";
echo $char; // Output: 途
Ruby:
char = "\u{9014}"
puts char # Output: 途
Rust:
let c = '\u{9014}';
println!("{}", c); // Output: 途
Go:
char := '\u9014'
fmt.Printf("%c\n", char) // Output: 途
CSS:
/* CSS content property */
.element::before {
content: "\009014"; /* 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%80%94
MD5:
f50ef2b5baccf91b415053f3a2d30163
SHA1:
b7a35ce4161d1653d3a5ef4de80553711891cabf
Base64:
6YCU