Scalar case:
julia> 1'
1
julia> 'a''
ERROR: MethodError: no method matching adjoint(::Char)
The function `adjoint` exists, but no method is defined for this combination of argument types.
...
Vector case:
julia> [1;2;3]'
1×3 adjoint(::Vector{Int64}) with eltype Int64:
1 2 3
julia> ['x';'y';'z']'
1×3 adjoint(::Vector{Char}) with eltype Union{}:
Error showing value of type LinearAlgebra.Adjoint{Union{}, Vector{Char}}:
...
There has been some discussion about the adjoint of a String and Vector{String}. The rationale for not extending adjoint to Strings make sense. However, Chars can behave like integers, can be converted to integers with codepoint, have a notion of distance, can be added to and subtracted from, etc. I’m curious why Chars are also prohibited from having adjoints.