C:
char c = '\u901F';
printf("%c\n", c); // Output: 速
JavaScript:
const char = '\u901F';
console.log(char); // Output: 速
Java:
char c = '\u901F';
System.out.println(c); // Output: 速
JSON:
{"text": "\u901F"} // Value: 速
Python:
char = '\u901F'
print(char) # Output: 速
Perl:
my $char = "\x{901F}";
print $char; # Output: 速
PHP:
$char = "\x{901F}";
echo $char; // Output: 速
Ruby:
char = "\u{901F}"
puts char # Output: 速
Rust:
let c = '\u{901F}';
println!("{}", c); // Output: 速
Go:
char := '\u901F'
fmt.Printf("%c\n", char) // Output: 速
CSS:
/* CSS content property */
.element::before {
content: "\00901F"; /* 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%9F
MD5:
4325df71731e219dcaf9f279cde5a0d8
SHA1:
1775aeb5c171b9bada35274700e5cdeb6cc8784d
Base64:
6YCf