C:
char c = '\u5F17';
printf("%c\n", c); // Output: 弗
JavaScript:
const char = '\u5F17';
console.log(char); // Output: 弗
Java:
char c = '\u5F17';
System.out.println(c); // Output: 弗
JSON:
{"text": "\u5F17"} // Value: 弗
Python:
char = '\u5F17'
print(char) # Output: 弗
Perl:
my $char = "\x{5F17}";
print $char; # Output: 弗
PHP:
$char = "\x{5F17}";
echo $char; // Output: 弗
Ruby:
char = "\u{5F17}"
puts char # Output: 弗
Rust:
let c = '\u{5F17}';
println!("{}", c); // Output: 弗
Go:
char := '\u5F17'
fmt.Printf("%c\n", char) // Output: 弗
CSS:
/* CSS content property */
.element::before {
content: "\005F17"; /* 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%BC%97
MD5:
48863f44c3dafe5776acbf2146af0270
SHA1:
9a8ecfdb9fbbcc7663e21d201d935300d51ff767
Base64:
5byX