in short timing u convey your emotions to others persons :)
like this
something about psychological value or something like that
It can be an indication of good will.
Berlin was an international zone because of its symbolic value
Symbolic constants are constants that the programmer has decided to give a symbolic name (usually one with a meaning to make it easy to remember) so he does not have to retype the numeric value every time he needs it and risk making an error. Many coding standards require ALL constants to be symbolic constants, even if only used once in the program.
The name of Julius Caesar, as just Caesar, came to mean king or emperor.
Expressive value can be understood as every dimension (in the realm of ideas) which, in its broadest sense, enlarges cultural meaning and understanding. Professor David Throsby has identified the following dimensions of the expressive values in which the creative industries deal: Aethetic value; Spiritual value; Social value; Historical Value; Symbolic value; Authenticity value.
That is a symbolic victory. The eagle is symbolic of victory.
You need to specify what is it that is symbolic.
A symbolic constant is a variable that is assigned a fixed value that cannot be changed during the program's execution, often represented by a name that conveys its meaning (e.g., PI = 3.14). In contrast, a literal constant is a fixed value directly embedded in the code, such as 3.14 or "Hello", which does not have an associated name. Symbolic constants improve code readability and maintainability, while literal constants provide immediate values without the need for additional identifiers.
If something is special to you it is symbolic.
the symbolic animal is the puma.
Literal constants are fixed values that do not change during the execution of a program, such as numbers (e.g., 5, 3.14) or strings (e.g., "Hello"). Symbolic constants, on the other hand, are named identifiers that represent a value, which can improve code readability and maintainability; for example, using PI to represent the value of 3.14. While literal constants are directly written in the code, symbolic constants are defined using keywords or specific syntax in programming languages, often in uppercase to distinguish them.