C#
string word = "World";
string text = $"Hello, {word}!";
JavaScript
const word = "World";
const text = `Hello, ${word}!`;
PHP
$word = "World";
$text = "Hello, {$word}!"; // ${word} でもおk。但し、PHP 8.2以降では非推奨だとコメントで教えてもらいました。
Python
word = "World"
text = f"Hello, {word}!"
Ruby
word = "World"
text = "Hello, #{word}!"