C:
char c = '\u4F1D';
printf("%c\n", c); // Output: 伝
JavaScript:
const char = '\u4F1D';
console.log(char); // Output: 伝
Java:
char c = '\u4F1D';
System.out.println(c); // Output: 伝
JSON:
{"text": "\u4F1D"} // Value: 伝
Python:
char = '\u4F1D'
print(char) # Output: 伝
Perl:
my $char = "\x{4F1D}";
print $char; # Output: 伝
PHP:
$char = "\x{4F1D}";
echo $char; // Output: 伝
Ruby:
char = "\u{4F1D}"
puts char # Output: 伝
Rust:
let c = '\u{4F1D}';
println!("{}", c); // Output: 伝
Go:
char := '\u4F1D'
fmt.Printf("%c\n", char) // Output: 伝
CSS:
/* CSS content property */
.element::before {
content: "\004F1D"; /* 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=%E4%BC%9D
MD5:
65b0afc79123904d6afcc85ea9e72e93
SHA1:
17b40d6d30ecf476b8200dc758dd535a7f065132
Base64:
5Lyd