You are overwriting the value of char which each loop iteration. This code will behave as you expect:
value = input("Input a string: ")
char = input("Input a character to count: ")[0]
count = 0
for c in value:
if c == char:
count += 1
print(f"The character '{char}' appears {count} times.")