diff --git a/algorithms/ce_surrogate.jl b/algorithms/ce_surrogate.jl new file mode 100644 index 0000000..32c37fe --- /dev/null +++ b/algorithms/ce_surrogate.jl @@ -0,0 +1,11 @@ +function ce_surrogate(S, ๐Œ, m, m_elite, k_max) + for k in 1:k_max + mโ‚‘, m_elite = evaluation_schedule(k, k_max) + ๐— = rand(๐Œ, mโ‚‘) + ๐˜ = map(S, eachcol(๐—)) + ๐ž = ๐—[:, sortperm(๐˜)[1:m_elite]] + ๐„ = model_elite_set!(๐—, ๐˜, ๐Œ, ๐ž, m, m_elite) + ๐Œ = fit(๐Œ, ๐„) + end + return ๐Œ +end diff --git a/chapters/tooling.tex b/chapters/tooling.tex index 7e573ad..281a99f 100644 --- a/chapters/tooling.tex +++ b/chapters/tooling.tex @@ -1,6 +1,6 @@ This chapter discusses open source software tools built and used in the previous chapters. These tools were designed for general applications of this work and were written in the scientific computing language Julia. -We first discusses the adaptive stress testing package used in \cref{cha:episodic_ast}, then provide quick usage examples of the packages used in \cref{cha:cem_variants} and \cref{cha:weakness_rec}. +We first discuss the adaptive stress testing package built for \cref{cha:episodic_ast}, then provide quick usage examples of the packages built for \cref{cha:cem_variants} and \cref{cha:weakness_rec}. \section{POMDPStressTesting.jl Summary} @@ -11,7 +11,7 @@ \section{POMDPStressTesting.jl Summary} Stochastic optimization solvers such as the cross-entropy method \cite{cem} are also available and random search is provided as a baseline. Additional solvers can easily be added by adhering to the POMDPs.jl interface. -\begin{lstlisting}[language=Julia] +\begin{lstlisting}[language=JuliaLocal] # GrayBox simulator and environment abstract type GrayBox.Simulation end function GrayBox.environment(sim::Simulation)::GrayBox.Environment end @@ -40,7 +40,7 @@ \section{POMDPStressTesting.jl Summary} The author has contributed to the AST Toolbox and found the need to create a similar package in pure Julia for better performance and to interface with the POMDPs.jl ecosystem. -\section{Statement of Need} +\subsection{Statement of Need} Validating autonomous systems is a crucial requirement before their deployment into real-world environments. Searching for likely failures using automated tools enable engineers to address potential problems during development. @@ -52,7 +52,7 @@ \section{Statement of Need} -\section{Research and Industrial Usage} +\subsection{Research and Industrial Usage} POMDPStressTesting.jl has been used to find likely failures in aircraft trajectory prediction systems \cite{ast_fms}, which are flight-critical subsystems used to aid in-flight automation. A developmental commercial flight management system was stress tested so the system engineers could mitigate potential issues before system deployment \cite{ast_fms}. @@ -60,38 +60,53 @@ \section{Research and Industrial Usage} There is also ongoing research on the use of POMDPStressTesting.jl for assessing the risk of autonomous vehicles and determining failure scenarios of autonomous lunar rovers. -% \section{Acknowledgments} +\subsection{Acknowledgments} -% We acknowledge Ritchie Lee for his guidance and original work on adaptive stress testing and the AdaptiveStressTesting.jl package and Mark Koren, Xiaobai Ma, and Anthony Corso for their work on the AST Toolbox Python package and the CrossEntropyMethod.jl package. -% We also acknowledge Shreyas Kowshik for his initial implementation of the TRPO and PPO algorithms in Julia. -% We want to thank the Stanford Intelligent Systems Laboratory for their development of the POMDPs.jl ecosystem and the MCTS.jl package; particular thanks to Zachary Sunberg. +We acknowledge Ritchie Lee for his guidance and original work on adaptive stress testing and the AdaptiveStressTesting.jl package and Mark Koren, Xiaobai Ma, and Anthony Corso for their work on the AST Toolbox Python package and the CrossEntropyMethod.jl package. +We also acknowledge Shreyas Kowshik for his initial implementation of the TRPO and PPO algorithms in Julia. +We want to thank the Stanford Intelligent Systems Laboratory for their development of the POMDPs.jl ecosystem and the MCTS.jl package; particular thanks to Zachary Sunberg. % We also want to thank Mykel J. Kochenderfer for his support and research input and for advancing the Julia community. \section{CrossEntropyVariants.jl Summary} -This package summarizes the work done in \cref{cha:cem_variants}. +This section summarizes the package produced from the work in \cref{cha:cem_variants}. To illustrate why we found Julia to be our language of choice, below we present a slightly cleaned-up version of our actual implementation of \cref{alg:ce_surrogate} (i.e., the \texttt{ce\_surrogate} algorithm), noting the direct translation of the pseudocode into executable Julia code: + +\begin{lstlisting}[language=JuliaLocal] +function ce_surrogate(S, ๐Œ, m, m_elite, k_max) + for k in 1:k_max + mโ‚‘, m_elite = evaluation_schedule(k, k_max) + ๐— = rand(๐Œ, mโ‚‘) + ๐˜ = map(S, eachcol(๐—)) + ๐ž = ๐—[:, sortperm(๐˜)[1:m_elite]] + ๐„ = model_elite_set!(๐—, ๐˜, ๐Œ, ๐ž, m, m_elite) + ๐Œ = fit(๐Œ, ๐„) + end + return ๐Œ +end +\end{lstlisting} + To run an example optimization problem, consider the following code: -\begin{lstlisting}[language=Julia] +\begin{lstlisting}[language=JuliaLocal] using CrossEntropyVariants using Distributions -f = sierra # objective function +S = sierra # objective function ๐› = [0, 0] ๐šบ = [200 0; 0 200] ๐Œ = MvNormal(๐›, ๐šบ) # proposal distribution -(๐Œ, bestโ‚“, bestแตฅ) = ce_surrogate(f, ๐Œ) +(๐Œ, bestโ‚“, bestแตฅ) = ce_surrogate(S, ๐Œ) \end{lstlisting} The performance of the surrogate models may be dependent on the underlying objective function. The default surrogate model is a Gaussian process with the squared exponential kernel function \cite{kochenderfer2019algorithms}. To use radial basis functions instead of a Gaussian process, you can specify a basis keyword input: -\begin{lstlisting}[language=Julia] -f = paraboloid # objective function +\begin{lstlisting}[language=JuliaLocal] +S = paraboloid # objective function ๐Œ = MvNormal([0, 0], [200 0; 0 200]) # proposal distribution -(๐Œ, bestโ‚“, bestแตฅ) = ce_surrogate(f, ๐Œ; basis=:squared) +(๐Œ, bestโ‚“, bestแตฅ) = ce_surrogate(S, ๐Œ; basis=:squared) \end{lstlisting} diff --git a/latexmkrc b/latexmkrc index 0ae70b9..ed72f40 100644 --- a/latexmkrc +++ b/latexmkrc @@ -1,3 +1,4 @@ +ensure_path( 'TEXINPUTS', './preamble/julia_mono_listings//' ); ensure_path( 'BIBINPUTS', './references//' ); $pdf_mode = 4; diff --git a/main.tex b/main.tex index 41e2425..5b504dd 100644 --- a/main.tex +++ b/main.tex @@ -100,4 +100,7 @@ \chapter{Conclusions} % [ ] one section "Summary" high level, no jargon, no non-sense % [ ] second section "Contributions", summarize how you've supported your claims (back references, specialized terminology) % [ ] third: future work -% https://www2.eecs.berkeley.edu/Pubs/Theses/ \ No newline at end of file +% https://www2.eecs.berkeley.edu/Pubs/Theses/ +% [x] Fix \texttt to use old monofont +% [x] Move JuliaMono font files. +% [ ] Page header to be small caps? \ No newline at end of file diff --git a/preamble/julia_mono_listings/JuliaMono-Bold.ttf b/preamble/julia_mono_listings/JuliaMono-Bold.ttf new file mode 100644 index 0000000..ceccbe7 Binary files /dev/null and b/preamble/julia_mono_listings/JuliaMono-Bold.ttf differ diff --git a/preamble/julia_mono_listings/JuliaMono-Medium.ttf b/preamble/julia_mono_listings/JuliaMono-Medium.ttf new file mode 100644 index 0000000..b8f52aa Binary files /dev/null and b/preamble/julia_mono_listings/JuliaMono-Medium.ttf differ diff --git a/preamble/julia_mono_listings/JuliaMono-Regular.ttf b/preamble/julia_mono_listings/JuliaMono-Regular.ttf new file mode 100644 index 0000000..04ba540 Binary files /dev/null and b/preamble/julia_mono_listings/JuliaMono-Regular.ttf differ diff --git a/preamble/julia_mono_listings/julia_font.tex b/preamble/julia_mono_listings/julia_font.tex new file mode 100644 index 0000000..b20d384 --- /dev/null +++ b/preamble/julia_mono_listings/julia_font.tex @@ -0,0 +1,12 @@ +\usepackage{fontspec} + +\newfontfamily\JuliaMono{JuliaMono}[ + UprightFont = *-Regular, + BoldFont = *-Bold, + Path = ./preamble/julia_mono_listings/, + Extension = .ttf] +\newfontface\JuliaMonoRegular{JuliaMono-Regular}[Path=./preamble/julia_mono_listings/] +\newfontface\JuliaMonoBold{JuliaMono-Bold}[Path=./preamble/julia_mono_listings/] + +% We don't want the global mono font to be JuliaMono. +% \setmonofont{JuliaMono-Medium}[Contextuals=Alternate] diff --git a/preamble/julia_mono_listings/julia_listings.tex b/preamble/julia_mono_listings/julia_listings.tex new file mode 100644 index 0000000..2a7a86f --- /dev/null +++ b/preamble/julia_mono_listings/julia_listings.tex @@ -0,0 +1,51 @@ +\usepackage{listings} +\usepackage{xcolor} + +\input{julia_listings_unicode} % full unicode support + +\lstdefinelanguage{Julia}{ + % functions + keywords=[3]{abs,abs2,abspath,accept,accumulate,accumulate!,acos,acos_fast,acosd,acosh,acosh_fast,acot,acotd,acoth,acsc,acscd,acsch,adjoint,adjoint!,all,all!,allunique,angle,angle_fast,any,any!,append!,apropos,ascii,asec,asecd,asech,asin,asin_fast,asind,asinh,asinh_fast,assert,asyncmap,asyncmap!,atan,atan2,atan2_fast,atan_fast,atand,atanh,atanh_fast,atexit,atreplinit,axes,backtrace,base,basename,beta,big,bin,bind,binomial,bitbroadcast,bitrand,bits,bitstring,bkfact,bkfact!,blkdiag,broadcast,broadcast!,broadcast_getindex,broadcast_setindex!,bswap,bytes2hex,cat,catch_backtrace,catch_stacktrace,cbrt,cbrt_fast,cd,ceil,cfunction,cglobal,charwidth,checkbounds,checkindex,chmod,chol,cholfact,cholfact!,chomp,chop,chown,chr2ind,circcopy!,circshift,circshift!,cis,cis_fast,clamp,clamp!,cld,clipboard,close,cmp,coalesce,code_llvm,code_lowered,code_native,code_typed,code_warntype,codeunit,codeunits,collect,colon,complex,cond,condskeel,conj,conj!,connect,consume,contains,convert,copy,copy!,copysign,copyto!,cor,cos,cos_fast,cosc,cosd,cosh,cosh_fast,cospi,cot,cotd,coth,count,count_ones,count_zeros,countlines,countnz,cov,cp,cross,csc,cscd,csch,ctime,ctranspose,ctranspose!,cummax,cummin,cumprod,cumprod!,cumsum,cumsum!,current_module,current_task,dec,deepcopy,deg2rad,delete!,deleteat!,den,denominator,deserialize,det,detach,diag,diagind,diagm,diff,digits,digits!,dirname,disable_sigint,display,displayable,displaysize,div,divrem,done,dot,download,dropzeros,dropzeros!,dump,eachindex,eachline,eachmatch,edit,eig,eigfact,eigfact!,eigmax,eigmin,eigvals,eigvals!,eigvecs,eltype,empty,empty!,endof,endswith,enumerate,eof,eps,equalto,error,esc,escape_string,evalfile,exit,exp,exp10,exp10_fast,exp2,exp2_fast,exp_fast,expanduser,expm,expm!,expm1,expm1_fast,exponent,extrema,eye,factorial,factorize,falses,fd,fdio,fetch,fieldcount,fieldname,fieldnames,fieldoffset,filemode,filesize,fill,fill!,filter,filter!,finalize,finalizer,find,findfirst,findin,findlast,findmax,findmax!,findmin,findmin!,findn,findnext,findnz,findprev,first,fld,fld1,fldmod,fldmod1,flipbits!,flipdim,flipsign,float,floor,flush,fma,foldl,foldr,foreach,frexp,full,fullname,functionloc,gamma,gc,gc_enable,gcd,gcdx,gensym,get,get!,get_zero_subnormals,getaddrinfo,getalladdrinfo,gethostname,getindex,getipaddr,getkey,getnameinfo,getpeername,getpid,getsockname,givens,gperm,gradient,hash,haskey,hcat,hessfact,hessfact!,hex,hex2bytes,hex2bytes!,hex2num,homedir,htol,hton,hvcat,hypot,hypot_fast,identity,ifelse,ignorestatus,im,imag,in,include_dependency,include_string,ind2chr,ind2sub,indexin,indices,indmax,indmin,info,insert!,instances,intersect,intersect!,inv,invmod,invperm,invpermute!,ipermute!,ipermutedims,is,is_apple,is_bsd,is_linux,is_unix,is_windows,isabspath,isapprox,isascii,isassigned,isbits,isblockdev,ischardev,isconcrete,isconst,isdiag,isdir,isdirpath,isempty,isequal,iseven,isfifo,isfile,isfinite,ishermitian,isimag,isimmutable,isinf,isinteger,isinteractive,isleaftype,isless,isletter,islink,islocked,ismarked,ismatch,ismissing,ismount,isnan,isodd,isone,isopen,ispath,isperm,isposdef,isposdef!,ispow2,isqrt,isreadable,isreadonly,isready,isreal,issetgid,issetuid,issocket,issorted,issparse,issticky,issubnormal,issubset,issubtype,issymmetric,istaskdone,istaskstarted,istextmime,istril,istriu,isvalid,iswritable,iszero,join,joinpath,keys,keytype,kill,kron,last,lbeta,lcm,ldexp,ldltfact,ldltfact!,leading_ones,leading_zeros,length,less,lexcmp,lexless,lfact,lgamma,lgamma_fast,linearindices,linreg,linspace,listen,listenany,lock,log,log10,log10_fast,log1p,log1p_fast,log2,log2_fast,log_fast,logabsdet,logdet,logging,logm,logspace,lpad,lq,lqfact,lqfact!,lstat,lstrip,ltoh,lu,lufact,lufact!,lyap,macroexpand,map,map!,mapfoldl,mapfoldr,mapreduce,mapreducedim,mapslices,mark,match,matchall,max,max_fast,maxabs,maximum,maximum!,maxintfloat,mean,mean!,median,median!,merge,merge!,method_exists,methods,methodswith,middle,midpoints,mimewritable,min,min_fast,minabs,minimum,minimum!,minmax,minmax_fast,missing,mkdir,mkpath,mktemp,mktempdir,mod,mod1,mod2pi,modf,module_name,module_parent,mtime,muladd,mv,names,nb_available,ncodeunits,ndigits,ndims,next,nextfloat,nextind,nextpow,nextpow2,nextprod,nnz,nonzeros,norm,normalize,normalize!,normpath,notify,ntoh,ntuple,nullspace,num,num2hex,numerator,nzrange,object_id,occursin,oct,oftype,one,ones,oneunit,open,operm,ordschur,ordschur!,pairs,parent,parentindexes,parentindices,parse,partialsort,partialsort!,partialsortperm,partialsortperm!,peakflops,permute,permute!,permutedims,permutedims!,pi,pinv,pipeline,pointer,pointer_from_objref,pop!,popdisplay,popfirst!,position,pow_fast,powermod,precision,precompile,prepend!,prevfloat,prevind,prevpow,prevpow2,print,print_shortest,print_with_color,println,process_exited,process_running,prod,prod!,produce,promote,promote_rule,promote_shape,promote_type,push!,pushdisplay,pushfirst!,put!,pwd,qr,qrfact,qrfact!,quantile,quantile!,quit,rad2deg,rand,rand!,randcycle,randcycle!,randexp,randexp!,randjump,randn,randn!,randperm,randperm!,randstring,randsubseq,randsubseq!,range,rank,rationalize,read,read!,readandwrite,readavailable,readbytes!,readchomp,readdir,readline,readlines,readlink,readstring,readuntil,real,realmax,realmin,realpath,recv,recvfrom,redirect_stderr,redirect_stdin,redirect_stdout,redisplay,reduce,reducedim,reenable_sigint,reim,reinterpret,reload,relpath,rem,rem2pi,repeat,replace,replace!,repmat,repr,reprmime,reset,reshape,resize!,rethrow,retry,reverse,reverse!,reverseind,rm,rol,rol!,ror,ror!,rot180,rotl90,rotr90,round,rounding,rowvals,rpad,rsearch,rsearchindex,rsplit,rstrip,run,scale!,schedule,schur,schurfact,schurfact!,search,searchindex,searchsorted,searchsortedfirst,searchsortedlast,sec,secd,sech,seek,seekend,seekstart,select,select!,selectperm,selectperm!,send,serialize,set_zero_subnormals,setdiff,setdiff!,setenv,setindex!,setprecision,setrounding,shift!,show,showall,showcompact,showerror,shuffle,shuffle!,sign,signbit,signed,signif,significand,similar,sin,sin_fast,sinc,sincos,sind,sinh,sinh_fast,sinpi,size,sizehint!,sizeof,skip,skipchars,skipmissing,sleep,slicedim,sort,sort!,sortcols,sortperm,sortperm!,sortrows,sparse,sparsevec,spawn,spdiagm,speye,splice!,split,splitdir,splitdrive,splitext,spones,sprand,sprandn,sprint,spzeros,sqrt,sqrt_fast,sqrtm,squeeze,srand,stacktrace,start,startswith,stat,std,stdm,step,stride,strides,string,stringmime,strip,strwidth,sub2ind,subtypes,success,sum,sum!,sumabs,sumabs2,summary,supertype,svd,svdfact,svdfact!,svdvals,svdvals!,sylvester,symdiff,symdiff!,symlink,systemerror,take!,takebuf_array,takebuf_string,tan,tan_fast,tand,tanh,tanh_fast,task_local_storage,tempdir,tempname,thisind,tic,time,time_ns,timedwait,to_indices,toc,toq,touch,trace,trailing_ones,trailing_zeros,transcode,transpose,transpose!,tril,tril!,triu,triu!,trues,trunc,truncate,trylock,tryparse,typeintersect,typejoin,typemax,typemin,unescape_string,union,union!,unique,unique!,unlock,unmark,unsafe_copy!,unsafe_copyto!,unsafe_load,unsafe_pointer_to_objref,unsafe_read,unsafe_store!,unsafe_string,unsafe_trunc,unsafe_wrap,unsafe_write,unshift!,unsigned,uperm,valtype,values,var,varinfo,varm,vcat,vec,vecdot,vecnorm,versioninfo,view,wait,walkdir,warn,which,whos,widemul,widen,withenv,workspace,write,xor,yield,yieldto,zero,zeros,zip,applicable,eval,fieldtype,getfield,invoke,isa,isdefined,nfields,nothing,setfield!,throw,tuple,typeassert,typeof,uninitialized},% + % module functions + keywords=[3]{asum,axpby!,axpy!,blascopy!,dot,dotc,dotu,gbmv,gbmv!,gemm,gemm!,gemv,gemv!,ger!,hemm,hemm!,hemv,hemv!,her!,her2k,her2k!,herk,herk!,iamax,nrm2,sbmv,sbmv!,scal,scal!,symm,symm!,symv,symv!,syr!,syr2k,syr2k!,syrk,syrk!,trmm,trmm!,trmv,trmv!,trsm,trsm!,trsv,trsv!),abs,abs2,abspath,accept,accumulate,accumulate!,acos,acos_fast,acosd,acosh,acosh_fast,acot,acotd,acoth,acsc,acscd,acsch,adjoint,adjoint!,all,all!,allunique,angle,angle_fast,any,any!,append!,apropos,argmax,argmin,ascii,asec,asecd,asech,asin,asin_fast,asind,asinh,asinh_fast,assert,asyncmap,asyncmap!,atan,atan2,atan2_fast,atan_fast,atand,atanh,atanh_fast,atexit,atreplinit,axes,backtrace,base,basename,beta,bfft,bfft!,big,bin,bind,binomial,bitbroadcast,bitrand,bits,bitstring,bkfact,bkfact!,blkdiag,brfft,broadcast,broadcast!,broadcast_getindex,broadcast_setindex!,bswap,bytes2hex,cat,catch_backtrace,catch_stacktrace,cbrt,cbrt_fast,cd,ceil,cfunction,cglobal,charwidth,checkbounds,checkindex,chmod,chol,cholfact,cholfact!,chomp,chop,chown,chr2ind,circcopy!,circshift,circshift!,cis,cis_fast,clamp,clamp!,cld,clipboard,close,cmp,coalesce,code_llvm,code_lowered,code_native,code_typed,code_warntype,codeunit,codeunits,collect,colon,complex,cond,condskeel,conj,conj!,connect,consume,contains,conv,conv2,convert,copy,copy!,copysign,copyto!,cor,cos,cos_fast,cosc,cosd,cosh,cosh_fast,cospi,cot,cotd,coth,count,count_ones,count_zeros,countlines,countnz,cov,cp,cross,csc,cscd,csch,ctime,ctranspose,ctranspose!,cummax,cummin,cumprod,cumprod!,cumsum,cumsum!,current_module,current_task,dct,dct!,dec,deconv,deepcopy,deg2rad,delete!,deleteat!,den,denominator,deserialize,det,detach,diag,diagind,diagm,diff,digits,digits!,dirname,disable_sigint,display,displayable,displaysize,div,divrem,done,dot,download,dropzeros,dropzeros!,dump,eachindex,eachline,eachmatch,edit,eig,eigfact,eigfact!,eigmax,eigmin,eigvals,eigvals!,eigvecs,eltype,empty,empty!,endof,endswith,enumerate,eof,eps,equalto,error,esc,escape_string,evalfile,exit,exp,exp10,exp10_fast,exp2,exp2_fast,exp_fast,expand,expanduser,expm,expm!,expm1,expm1_fast,exponent,extrema,eye,factorial,factorize,falses,fd,fdio,fetch,fft,fft!,fftshift,fieldcount,fieldname,fieldnames,fieldoffset,filemode,filesize,fill,fill!,filt,filt!,filter,filter!,finalize,finalizer,find,findfirst,findin,findlast,findmax,findmax!,findmin,findmin!,findn,findnext,findnz,findprev,first,fld,fld1,fldmod,fldmod1,flipbits!,flipdim,flipsign,float,floor,flush,fma,foldl,foldr,foreach,frexp,full,fullname,functionloc,gamma,gc,gc_enable,gcd,gcdx,gensym,get,get!,get_zero_subnormals,getaddrinfo,getalladdrinfo,gethostname,getindex,getipaddr,getkey,getnameinfo,getpeername,getpid,getsockname,givens,gperm,gradient,hash,haskey,hcat,hessfact,hessfact!,hex,hex2bytes,hex2bytes!,hex2num,homedir,htol,hton,hvcat,hypot,hypot_fast,idct,idct!,identity,ifelse,ifft,ifft!,ifftshift,ignorestatus,im,imag,in,include_dependency,include_string,ind2chr,ind2sub,indexin,indices,indmax,indmin,info,insert!,instances,intersect,intersect!,inv,invmod,invperm,invpermute!,ipermute!,ipermutedims,irfft,is,is_apple,is_bsd,is_linux,is_unix,is_windows,isabspath,isapprox,isascii,isassigned,isbits,isblockdev,ischardev,isconcrete,isconst,isdiag,isdir,isdirpath,isempty,isequal,iseven,isfifo,isfile,isfinite,ishermitian,isimag,isimmutable,isinf,isinteger,isinteractive,isleaftype,isless,isletter,islink,islocked,ismarked,ismatch,ismissing,ismount,isnan,isodd,isone,isopen,ispath,isperm,isposdef,isposdef!,ispow2,isqrt,isreadable,isreadonly,isready,isreal,issetgid,issetuid,issocket,issorted,issparse,issticky,issubnormal,issubset,issubtype,issymmetric,istaskdone,istaskstarted,istextmime,istril,istriu,isvalid,iswritable,iszero,join,joinpath,keys,keytype,kill,kron,last,lbeta,lcm,ldexp,ldltfact,ldltfact!,leading_ones,leading_zeros,length,less,lexcmp,lexless,lfact,lgamma,lgamma_fast,linearindices,linreg,linspace,listen,listenany,lock,log,log10,log10_fast,log1p,log1p_fast,log2,log2_fast,log_fast,logabsdet,logdet,logging,logm,logspace,lpad,lq,lqfact,lqfact!,lstat,lstrip,ltoh,lu,lufact,lufact!,lyap,macroexpand,map,map!,mapfoldl,mapfoldr,mapreduce,mapreducedim,mapslices,mark,match,matchall,max,max_fast,maxabs,maximum,maximum!,maxintfloat,mean,mean!,median,median!,merge,merge!,method_exists,methods,methodswith,middle,midpoints,mimewritable,min,min_fast,minabs,minimum,minimum!,minmax,minmax_fast,missing,mkdir,mkpath,mktemp,mktempdir,mod,mod1,mod2pi,modf,module_name,module_parent,mtime,muladd,mv,names,nb_available,ncodeunits,ndigits,ndims,next,nextfloat,nextind,nextpow,nextpow2,nextprod,nnz,nonzeros,norm,normalize,normalize!,normpath,notify,ntoh,ntuple,nullspace,num,num2hex,numerator,nzrange,object_id,occursin,oct,oftype,one,ones,oneunit,open,operm,ordschur,ordschur!,pairs,parent,parentindexes,parentindices,parse,partialsort,partialsort!,partialsortperm,partialsortperm!,peakflops,permute,permute!,permutedims,permutedims!,pi,pinv,pipeline,plan_bfft,plan_bfft!,plan_brfft,plan_dct,plan_dct!,plan_fft,plan_fft!,plan_idct,plan_idct!,plan_ifft,plan_ifft!,plan_irfft,plan_rfft,pointer,pointer_from_objref,pop!,popdisplay,popfirst!,position,pow_fast,powermod,precision,precompile,prepend!,prevfloat,prevind,prevpow,prevpow2,print,print_shortest,print_with_color,println,process_exited,process_running,prod,prod!,produce,promote,promote_rule,promote_shape,promote_type,push!,pushdisplay,pushfirst!,put!,pwd,qr,qrfact,qrfact!,quantile,quantile!,quit,rad2deg,rand,rand!,randcycle,randcycle!,randexp,randexp!,randjump,randn,randn!,randperm,randperm!,randstring,randsubseq,randsubseq!,range,rank,rationalize,read,read!,readandwrite,readavailable,readbytes!,readchomp,readdir,readline,readlines,readlink,readstring,readuntil,real,realmax,realmin,realpath,recv,recvfrom,redirect_stderr,redirect_stdin,redirect_stdout,redisplay,reduce,reducedim,reenable_sigint,reim,reinterpret,reload,relpath,rem,rem2pi,repeat,replace,replace!,repmat,repr,reprmime,reset,reshape,resize!,rethrow,retry,reverse,reverse!,reverseind,rfft,rm,rol,rol!,ror,ror!,rot180,rotl90,rotr90,round,rounding,rowvals,rpad,rsearch,rsearchindex,rsplit,rstrip,run,scale!,schedule,schur,schurfact,schurfact!,search,searchindex,searchsorted,searchsortedfirst,searchsortedlast,sec,secd,sech,seek,seekend,seekstart,select,select!,selectperm,selectperm!,send,serialize,set_zero_subnormals,setdiff,setdiff!,setenv,setindex!,setprecision,setrounding,shift!,show,showall,showcompact,showerror,shuffle,shuffle!,sign,signbit,signed,signif,significand,similar,sin,sin_fast,sinc,sincos,sind,sinh,sinh_fast,sinpi,size,sizehint!,sizeof,skip,skipchars,skipmissing,sleep,slicedim,sort,sort!,sortcols,sortperm,sortperm!,sortrows,sparse,sparsevec,spawn,spdiagm,speye,splice!,split,splitdir,splitdrive,splitext,spones,sprand,sprandn,sprint,spzeros,sqrt,sqrt_fast,sqrtm,squeeze,srand,stacktrace,start,startswith,stat,std,stdm,step,stride,strides,string,stringmime,strip,strwidth,sub2ind,subtypes,success,sum,sum!,sumabs,sumabs2,summary,super,supertype,svd,svdfact,svdfact!,svdvals,svdvals!,sylvester,symdiff,symdiff!,symlink,systemerror,take!,takebuf_array,takebuf_string,tan,tan_fast,tand,tanh,tanh_fast,task_local_storage,tempdir,tempname,thisind,tic,time,time_ns,timedwait,to_indices,toc,toq,touch,trace,trailing_ones,trailing_zeros,transcode,transpose,transpose!,tril,tril!,triu,triu!,trues,trunc,truncate,trylock,tryparse,typeintersect,typejoin,typemax,typemin,unescape_string,union,union!,unique,unique!,unlock,unmark,unsafe_copy!,unsafe_copyto!,unsafe_load,unsafe_pointer_to_objref,unsafe_read,unsafe_store!,unsafe_string,unsafe_trunc,unsafe_wrap,unsafe_write,unshift!,unsigned,uperm,valtype,values,var,varinfo,varm,vcat,vec,vecdot,vecnorm,versioninfo,view,wait,walkdir,warn,which,whos,widemul,widen,withenv,workspace,write,xcorr,xor,yield,yieldto,zero,zeros,zip,broadcast_getindex,broadcast_indices,broadcast_setindex!,broadcast_similar,dotview,apropos,doc,countfrom,cycle,drop,enumerate,flatten,partition,product,repeated,rest,take,zip,get_creds!,with,calloc,errno,flush_cstdio,free,gethostname,getpid,malloc,realloc,strerror,strftime,strptime,systemsleep,time,transcode,dlclose,dlext,dllist,dlopen,dlopen_e,dlpath,dlsym,dlsym_e,find_library,adjoint,adjoint!,axpby!,axpy!,bkfact,bkfact!,chol,cholfact,cholfact!,cond,condskeel,copy_transpose!,copyto!,cross,det,diag,diagind,diagm,diff,dot,eig,eigfact,eigfact!,eigmax,eigmin,eigvals,eigvals!,eigvecs,factorize,getq,givens,gradient,hessfact,hessfact!,isdiag,ishermitian,isposdef,isposdef!,issuccess,issymmetric,istril,istriu,kron,ldltfact,ldltfact!,linreg,logabsdet,logdet,lq,lqfact,lqfact!,lu,lufact,lufact!,lyap,norm,normalize,normalize!,nullspace,ordschur,ordschur!,peakflops,pinv,qr,qrfact,qrfact!,rank,scale!,schur,schurfact,schurfact!,svd,svdfact,svdfact!,svdvals,svdvals!,sylvester,trace,transpose,transpose!,transpose_type,tril,tril!,triu,triu!,vecdot,vecnorm,html,latex,license,readme,isexpr,quot,show_sexpr,add,available,build,checkout,clone,dir,free,init,installed,pin,resolve,rm,setprotocol!,status,test,update,deserialize,serialize,blkdiag,droptol!,dropzeros,dropzeros!,issparse,nnz,nonzeros,nzrange,permute,rowvals,sparse,sparsevec,spdiagm,spones,sprand,sprandn,spzeros,catch_stacktrace,stacktrace,cpu_info,cpu_summary,free_memory,isapple,isbsd,islinux,isunix,iswindows,loadavg,total_memory,uptime,atomic_add!,atomic_and!,atomic_cas!,atomic_fence,atomic_max!,atomic_min!,atomic_nand!,atomic_or!,atomic_sub!,atomic_xchg!,atomic_xor!,nthreads,threadid,applicable,eval,fieldtype,getfield,invoke,isa,isdefined,nfields,nothing,setfield!,throw,tuple,typeassert,typeof,uninitialized},% + % types and modules + keywords=[2]{AbstractArray,AbstractChannel,AbstractDict,AbstractDisplay,AbstractFloat,AbstractIrrational,AbstractMatrix,AbstractRNG,AbstractRange,AbstractSerializer,AbstractSet,AbstractSparseArray,AbstractSparseMatrix,AbstractSparseVector,AbstractString,AbstractUnitRange,AbstractVecOrMat,AbstractVector,Adjoint,Any,ArgumentError,Array,AssertionError,Bidiagonal,BigFloat,BigInt,BitArray,BitMatrix,BitSet,BitVector,Bool,BoundsError,BufferStream,CapturedException,CartesianIndex,CartesianIndices,Cchar,Cdouble,Cfloat,Channel,Char,Cint,Cintmax_t,Clong,Clonglong,Cmd,CodeInfo,Colon,Complex,ComplexF16,ComplexF32,ComplexF64,CompositeException,Condition,ConjArray,ConjMatrix,ConjVector,Cptrdiff_t,Cshort,Csize_t,Cssize_t,Cstring,Cuchar,Cuint,Cuintmax_t,Culong,Culonglong,Cushort,Cvoid,Cwchar_t,Cwstring,DataType,DenseArray,DenseMatrix,DenseVecOrMat,DenseVector,Diagonal,Dict,DimensionMismatch,Dims,DivideError,DomainError,EOFError,EachLine,Enum,Enumerate,ErrorException,Exception,ExponentialBackOff,Expr,Factorization,Float16,Float32,Float64,Function,GlobalRef,GotoNode,HTML,Hermitian,IO,IOBuffer,IOContext,IOStream,IPAddr,IPv4,IPv6,IndexCartesian,IndexLinear,IndexStyle,InexactError,InitError,Int,Int128,Int16,Int32,Int64,Int8,Integer,InterruptException,InvalidStateException,Irrational,KeyError,LabelNode,LinSpace,LineNumberNode,LinearIndices,LoadError,LowerTriangular,MIME,Matrix,MersenneTwister,Method,MethodError,MethodTable,Missing,MissingException,Module,NTuple,NamedTuple,NewvarNode,Nothing,Number,ObjectIdDict,OrdinalRange,OutOfMemoryError,OverflowError,Pair,PartialQuickSort,PermutedDimsArray,Pipe,Ptr,QuoteNode,RandomDevice,Rational,RawFD,ReadOnlyMemoryError,Real,ReentrantLock,Ref,Regex,RegexMatch,RoundingMode,RowVector,SSAValue,SegmentationFault,SerializationState,Set,Signed,SimpleVector,Slot,SlotNumber,Some,SparseMatrixCSC,SparseVector,StackFrame,StackOverflowError,StackTrace,StepRange,StepRangeLen,StridedArray,StridedMatrix,StridedVecOrMat,StridedVector,String,StringIndexError,SubArray,SubString,SymTridiagonal,Symbol,Symmetric,SystemError,TCPSocket,Task,Text,TextDisplay,Timer,Transpose,Tridiagonal,Tuple,Type,TypeError,TypeMapEntry,TypeMapLevel,TypeName,TypeVar,TypedSlot,UDPSocket,UInt,UInt128,UInt16,UInt32,UInt64,UInt8,UndefRefError,UndefVarError,UniformScaling,Uninitialized,Union,UnionAll,UnitRange,Unsigned,UpperTriangular,Val,Vararg,VecElement,VecOrMat,Vector,VersionNumber,WeakKeyDict,WeakRef,BLAS,Base,Broadcast,DFT,Docs,Iterators,LAPACK,LibGit2,Libc,Libdl,LinAlg,Markdown,Meta,Operators,Pkg,Serializer,SparseArrays,StackTraces,Sys,Threads,Core,Main},% + % literals + keywords=[1]{true,false,nothing,missing,im,uninitialized,NaN,NaN16,NaN32,NaN64,Inf,Inf16,Inf32,Inf64,ARGS,C_NULL,ENDIAN_BOM,ENV,LOAD_PATH,PROGRAM_FILE,STDERR,STDIN,STDOUT,VERSION}, + % keywords + keywords=[1]{mutable,immutable,struct,begin,end,function,macro,quote,let,local,global,const,abstract,module,baremodule,using,import,export,in,if,else,elseif,for,while,do,try,catch,finally,return,break,continue},% + sensitive=true, + morecomment=[l]{\#}, + morecomment=[n]{\#=}{=\#}, + morestring=[s]{"}{"}, + morestring=[m]{'}{'}, + alsoletter=!? +} + +\lstset{ + language = Julia, + backgroundcolor = \color[HTML]{F2F2F2}, + basicstyle = \JuliaMonoRegular\footnotesize\color[HTML]{19177C}, + numberstyle = \JuliaMonoRegular\scriptsize\color[HTML]{7F7F7F}, + keywordstyle = [1]{\JuliaMonoBold\color[HTML]{1BA1EA}}, + keywordstyle = [2]{\color[HTML]{0F6FA3}}, + keywordstyle = [3]{\color[HTML]{0000FF}}, + stringstyle = \JuliaMonoRegular\color[HTML]{F5615C}, + commentstyle = \color[HTML]{AAAAAA}, + rulecolor = \color[HTML]{000000}, + frame=lines, + xleftmargin=10pt, + framexleftmargin=10pt, + framextopmargin=4pt, + framexbottommargin=4pt, + tabsize=4, + captionpos=b, + breaklines=true, + breakatwhitespace=false, + showstringspaces=false, + showspaces=false, + showtabs=false, + columns=fullflexible, + keepspaces=true, + numbers=none +} \ No newline at end of file diff --git a/preamble/julia_mono_listings/julia_listings_unicode.tex b/preamble/julia_mono_listings/julia_listings_unicode.tex new file mode 100644 index 0000000..ca4a755 --- /dev/null +++ b/preamble/julia_mono_listings/julia_listings_unicode.tex @@ -0,0 +1,3278 @@ +% set lstlisting to accept full Julia unicode support +\makeatletter +\lst@InputCatcodes +\def\lst@DefEC{% + \lst@CCECUse \lst@ProcessLetter + % 2-digit hex + ^^a1% ยก \exclamdown Inverted Exclamation Mark + ^^a3% ยฃ \sterling Pound Sign + ^^a5% ยฅ \yen Yen Sign + ^^a6% ยฆ \brokenbar Broken Bar / Broken Vertical Bar + ^^a7% ยง \S Section Sign + ^^a9% ยฉ \copyright, \:copyright: Copyright Sign + ^^aa% ยช \ordfeminine Feminine Ordinal Indicator + ^^ac% ยฌ \neg Not Sign + ^^ae% ยฎ \circledR, \:registered: Registered Sign / Registered Trade Mark Sign + ^^af% ยฏ \highminus Macron / Spacing Macron + ^^b0% ยฐ \degree Degree Sign + ^^b1% ยฑ \pm Plus-Minus Sign / Plus-Or-Minus Sign + ^^b2% ยฒ \^2 Superscript Two / Superscript Digit Two + ^^b3% ยณ \^3 Superscript Three / Superscript Digit Three + ^^b6% ยถ \P Pilcrow Sign / Paragraph Sign + ^^b7% ยท \cdotp Middle Dot + ^^b9% ยน \^1 Superscript One / Superscript Digit One + ^^ba% ยบ \ordmasculine Masculine Ordinal Indicator + ^^bc% ยผ \1/4 Vulgar Fraction One Quarter / Fraction One Quarter + ^^bd% ยฝ \1/2 Vulgar Fraction One Half / Fraction One Half + ^^be% ยพ \3/4 Vulgar Fraction Three Quarters / Fraction Three Quarters + ^^bf% ยฟ \questiondown Inverted Question Mark + ^^c5% ร… \AA Latin Capital Letter A With Ring Above / Latin Capital Letter A Ring + ^^c6% ร† \AE Latin Capital Letter Ae / Latin Capital Letter A E + ^^d0% ร \DH Latin Capital Letter Eth + ^^d7% ร— \times Multiplication Sign + ^^d8% ร˜ \O Latin Capital Letter O With Stroke / Latin Capital Letter O Slash + ^^de% รž \TH Latin Capital Letter Thorn + ^^df% รŸ \ss Latin Small Letter Sharp S + ^^e5% รฅ \aa Latin Small Letter A With Ring Above / Latin Small Letter A Ring + ^^e6% รฆ \ae Latin Small Letter Ae / Latin Small Letter A E + ^^f0% รฐ \eth, \dh Latin Small Letter Eth + ^^f7% รท \div Division Sign + ^^f8% รธ \o Latin Small Letter O With Stroke / Latin Small Letter O Slash + ^^fe% รพ \th Latin Small Letter Thorn + % zero-padded 4-digit hex + ^^^^0110% ฤ \DJ Latin Capital Letter D With Stroke / Latin Capital Letter D Bar + ^^^^0111% ฤ‘ \dj Latin Small Letter D With Stroke / Latin Small Letter D Bar + ^^^^0127% ฤง \hbar Latin Small Letter H With Stroke / Latin Small Letter H Bar + ^^^^0131% ฤฑ \imath Latin Small Letter Dotless I + ^^^^0141% ล \L Latin Capital Letter L With Stroke / Latin Capital Letter L Slash + ^^^^0142% ล‚ \l Latin Small Letter L With Stroke / Latin Small Letter L Slash + ^^^^014a% ลŠ \NG Latin Capital Letter Eng + ^^^^014b% ล‹ \ng Latin Small Letter Eng + ^^^^0152% ล’ \OE Latin Capital Ligature Oe / Latin Capital Letter O E + ^^^^0153% ล“ \oe Latin Small Ligature Oe / Latin Small Letter O E + ^^^^0195% ฦ• \hvlig Latin Small Letter Hv / Latin Small Letter H V + ^^^^019e% ฦž \nrleg Latin Small Letter N With Long Right Leg + ^^^^01b5% ฦต \Zbar Latin Capital Letter Z With Stroke / Latin Capital Letter Z Bar + ^^^^01c2% ว‚ \doublepipe Latin Letter Alveolar Click / Latin Letter Pipe Double Bar + ^^^^0237% ศท \jmath Latin Small Letter Dotless J + ^^^^0250% ษ \trna Latin Small Letter Turned A + ^^^^0252% ษ’ \trnsa Latin Small Letter Turned Alpha / Latin Small Letter Turned Script A + ^^^^0254% ษ” \openo Latin Small Letter Open O + ^^^^0256% ษ– \rtld Latin Small Letter D With Tail / Latin Small Letter D Retroflex Hook + ^^^^0259% ษ™ \schwa Latin Small Letter Schwa + ^^^^0263% ษฃ \pgamma Latin Small Letter Gamma + ^^^^0264% ษค \pbgam Latin Small Letter Rams Horn / Latin Small Letter Baby Gamma + ^^^^0265% ษฅ \trnh Latin Small Letter Turned H + ^^^^026c% ษฌ \btdl Latin Small Letter L With Belt / Latin Small Letter L Belt + ^^^^026d% ษญ \rtll Latin Small Letter L With Retroflex Hook / Latin Small Letter L Retroflex Hook + ^^^^026f% ษฏ \trnm Latin Small Letter Turned M + ^^^^0270% ษฐ \trnmlr Latin Small Letter Turned M With Long Leg + ^^^^0271% ษฑ \ltlmr Latin Small Letter M With Hook / Latin Small Letter M Hook + ^^^^0272% ษฒ \ltln Latin Small Letter N With Left Hook / Latin Small Letter N Hook + ^^^^0273% ษณ \rtln Latin Small Letter N With Retroflex Hook / Latin Small Letter N Retroflex Hook + ^^^^0277% ษท \clomeg Latin Small Letter Closed Omega + ^^^^0278% ษธ \ltphi Latin Small Letter Phi + ^^^^0279% ษน \trnr Latin Small Letter Turned R + ^^^^027a% ษบ \trnrl Latin Small Letter Turned R With Long Leg + ^^^^027b% ษป \rttrnr Latin Small Letter Turned R With Hook / Latin Small Letter Turned R Hook + ^^^^027c% ษผ \rl Latin Small Letter R With Long Leg + ^^^^027d% ษฝ \rtlr Latin Small Letter R With Tail / Latin Small Letter R Hook + ^^^^027e% ษพ \fhr Latin Small Letter R With Fishhook / Latin Small Letter Fishhook R + ^^^^0282% ส‚ \rtls Latin Small Letter S With Hook / Latin Small Letter S Hook + ^^^^0283% สƒ \esh Latin Small Letter Esh + ^^^^0287% ส‡ \trnt Latin Small Letter Turned T + ^^^^0288% สˆ \rtlt Latin Small Letter T With Retroflex Hook / Latin Small Letter T Retroflex Hook + ^^^^028a% สŠ \pupsil Latin Small Letter Upsilon + ^^^^028b% ส‹ \pscrv Latin Small Letter V With Hook / Latin Small Letter Script V + ^^^^028c% สŒ \invv Latin Small Letter Turned V + ^^^^028d% ส \invw Latin Small Letter Turned W + ^^^^028e% สŽ \trny Latin Small Letter Turned Y + ^^^^0290% ส \rtlz Latin Small Letter Z With Retroflex Hook / Latin Small Letter Z Retroflex Hook + ^^^^0292% ส’ \yogh Latin Small Letter Ezh / Latin Small Letter Yogh + ^^^^0294% ส” \glst Latin Letter Glottal Stop + ^^^^0295% ส• \reglst Latin Letter Pharyngeal Voiced Fricative / Latin Letter Reversed Glottal Stop + ^^^^0296% ส– \inglst Latin Letter Inverted Glottal Stop + ^^^^029e% สž \turnk Latin Small Letter Turned K + ^^^^02a4% สค \dyogh Latin Small Letter Dezh Digraph / Latin Small Letter D Yogh + ^^^^02a7% สง \tesh Latin Small Letter Tesh Digraph / Latin Small Letter T Esh + ^^^^02b0% สฐ \^h Modifier Letter Small H + ^^^^02b2% สฒ \^j Modifier Letter Small J + ^^^^02b3% สณ \^r Modifier Letter Small R + ^^^^02b7% สท \^w Modifier Letter Small W + ^^^^02b8% สธ \^y Modifier Letter Small Y + ^^^^02bc% สผ \rasp Modifier Letter Apostrophe + ^^^^02c8% หˆ \verts Modifier Letter Vertical Line + ^^^^02cc% หŒ \verti Modifier Letter Low Vertical Line + ^^^^02d0% ห \lmrk Modifier Letter Triangular Colon + ^^^^02d1% ห‘ \hlmrk Modifier Letter Half Triangular Colon + ^^^^02d2% ห’ \sbrhr Modifier Letter Centred Right Half Ring / Modifier Letter Centered Right Half Ring + ^^^^02d3% ห“ \sblhr Modifier Letter Centred Left Half Ring / Modifier Letter Centered Left Half Ring + ^^^^02d4% ห” \rais Modifier Letter Up Tack + ^^^^02d5% ห• \low Modifier Letter Down Tack + ^^^^02d8% ห˜ \u Breve / Spacing Breve + ^^^^02dc% หœ \tildelow Small Tilde / Spacing Tilde + ^^^^02e1% หก \^l Modifier Letter Small L + ^^^^02e2% หข \^s Modifier Letter Small S + ^^^^02e3% หฃ \^x Modifier Letter Small X + ^^^^0300% ฬ€ \grave Combining Grave Accent / Non-Spacing Grave + ^^^^0301% ฬ \acute Combining Acute Accent / Non-Spacing Acute + ^^^^0302% ฬ‚ \hat Combining Circumflex Accent / Non-Spacing Circumflex + ^^^^0303% ฬƒ \tilde Combining Tilde / Non-Spacing Tilde + ^^^^0304% ฬ„ \bar Combining Macron / Non-Spacing Macron + ^^^^0305% ฬ… \overbar Combining Overline / Non-Spacing Overscore + ^^^^0306% ฬ† \breve Combining Breve / Non-Spacing Breve + ^^^^0307% ฬ‡ \dot Combining Dot Above / Non-Spacing Dot Above + ^^^^0308% ฬˆ \ddot Combining Diaeresis / Non-Spacing Diaeresis + ^^^^0309% ฬ‰ \ovhook Combining Hook Above / Non-Spacing Hook Above + ^^^^030a% ฬŠ \ocirc Combining Ring Above / Non-Spacing Ring Above + ^^^^030b% ฬ‹ \H Combining Double Acute Accent / Non-Spacing Double Acute + ^^^^030c% ฬŒ \check Combining Caron / Non-Spacing Hacek + ^^^^0310% ฬ \candra Combining Candrabindu / Non-Spacing Candrabindu + ^^^^0312% ฬ’ \oturnedcomma Combining Turned Comma Above / Non-Spacing Turned Comma Above + ^^^^0315% ฬ• \ocommatopright Combining Comma Above Right / Non-Spacing Comma Above Right + ^^^^031a% ฬš \droang Combining Left Angle Above / Non-Spacing Left Angle Above + ^^^^0321% ฬก \palh Combining Palatalized Hook Below / Non-Spacing Palatalized Hook Below + ^^^^0322% ฬข \rh Combining Retroflex Hook Below / Non-Spacing Retroflex Hook Below + ^^^^0327% ฬง \c Combining Cedilla / Non-Spacing Cedilla + ^^^^0328% ฬจ \k Combining Ogonek / Non-Spacing Ogonek + ^^^^032a% ฬช \sbbrg Combining Bridge Below / Non-Spacing Bridge Below + ^^^^0330% ฬฐ \wideutilde Combining Tilde Below / Non-Spacing Tilde Below + ^^^^0332% ฬฒ \underbar Combining Low Line / Non-Spacing Underscore + ^^^^0336% ฬถ \strike, \sout Combining Long Stroke Overlay / Non-Spacing Long Bar Overlay + ^^^^0338% ฬธ \not Combining Long Solidus Overlay / Non-Spacing Long Slash Overlay + ^^^^034d% อ \underleftrightarrow Combining Left Right Arrow Below + ^^^^0391% ฮ‘ \Alpha Greek Capital Letter Alpha + ^^^^0392% ฮ’ \Beta Greek Capital Letter Beta + ^^^^0393% ฮ“ \Gamma Greek Capital Letter Gamma + ^^^^0394% ฮ” \Delta Greek Capital Letter Delta + ^^^^0395% ฮ• \Epsilon Greek Capital Letter Epsilon + ^^^^0396% ฮ– \Zeta Greek Capital Letter Zeta + ^^^^0397% ฮ— \Eta Greek Capital Letter Eta + ^^^^0398% ฮ˜ \Theta Greek Capital Letter Theta + ^^^^0399% ฮ™ \Iota Greek Capital Letter Iota + ^^^^039a% ฮš \Kappa Greek Capital Letter Kappa + ^^^^039b% ฮ› \Lambda Greek Capital Letter Lamda / Greek Capital Letter Lambda + ^^^^039c% ฮœ \upMu Greek Capital Letter Mu + ^^^^039d% ฮ \upNu Greek Capital Letter Nu + ^^^^039e% ฮž \Xi Greek Capital Letter Xi + ^^^^039f% ฮŸ \upOmicron Greek Capital Letter Omicron + ^^^^03a0% ฮ  \Pi Greek Capital Letter Pi + ^^^^03a1% ฮก \Rho Greek Capital Letter Rho + ^^^^03a3% ฮฃ \Sigma Greek Capital Letter Sigma + ^^^^03a4% ฮค \Tau Greek Capital Letter Tau + ^^^^03a5% ฮฅ \Upsilon Greek Capital Letter Upsilon + ^^^^03a6% ฮฆ \Phi Greek Capital Letter Phi + ^^^^03a7% ฮง \Chi Greek Capital Letter Chi + ^^^^03a8% ฮจ \Psi Greek Capital Letter Psi + ^^^^03a9% ฮฉ \Omega Greek Capital Letter Omega + ^^^^03b1% ฮฑ \alpha Greek Small Letter Alpha + ^^^^03b2% ฮฒ \beta Greek Small Letter Beta + ^^^^03b3% ฮณ \gamma Greek Small Letter Gamma + ^^^^03b4% ฮด \delta Greek Small Letter Delta + ^^^^03b5% ฮต \upepsilon, \varepsilon Greek Small Letter Epsilon + ^^^^03b6% ฮถ \zeta Greek Small Letter Zeta + ^^^^03b7% ฮท \eta Greek Small Letter Eta + ^^^^03b8% ฮธ \theta Greek Small Letter Theta + ^^^^03b9% ฮน \iota Greek Small Letter Iota + ^^^^03ba% ฮบ \kappa Greek Small Letter Kappa + ^^^^03bb% ฮป \lambda Greek Small Letter Lamda / Greek Small Letter Lambda + ^^^^03bc% ฮผ \mu Greek Small Letter Mu + ^^^^03bd% ฮฝ \nu Greek Small Letter Nu + ^^^^03be% ฮพ \xi Greek Small Letter Xi + ^^^^03bf% ฮฟ \upomicron Greek Small Letter Omicron + ^^^^03c0% ฯ€ \pi Greek Small Letter Pi + ^^^^03c1% ฯ \rho Greek Small Letter Rho + ^^^^03c2% ฯ‚ \varsigma Greek Small Letter Final Sigma + ^^^^03c3% ฯƒ \sigma Greek Small Letter Sigma + ^^^^03c4% ฯ„ \tau Greek Small Letter Tau + ^^^^03c5% ฯ… \upsilon Greek Small Letter Upsilon + ^^^^03c6% ฯ† \varphi Greek Small Letter Phi + ^^^^03c7% ฯ‡ \chi Greek Small Letter Chi + ^^^^03c8% ฯˆ \psi Greek Small Letter Psi + ^^^^03c9% ฯ‰ \omega Greek Small Letter Omega + ^^^^03d0% ฯ \upvarbeta Greek Beta Symbol / Greek Small Letter Curled Beta + ^^^^03d1% ฯ‘ \vartheta Greek Theta Symbol / Greek Small Letter Script Theta + ^^^^03d5% ฯ• \phi Greek Phi Symbol / Greek Small Letter Script Phi + ^^^^03d6% ฯ– \varpi Greek Pi Symbol / Greek Small Letter Omega Pi + ^^^^03d8% ฯ˜ \upoldKoppa Greek Letter Archaic Koppa + ^^^^03d9% ฯ™ \upoldkoppa Greek Small Letter Archaic Koppa + ^^^^03da% ฯš \Stigma Greek Letter Stigma / Greek Capital Letter Stigma + ^^^^03db% ฯ› \upstigma Greek Small Letter Stigma + ^^^^03dc% ฯœ \Digamma Greek Letter Digamma / Greek Capital Letter Digamma + ^^^^03dd% ฯ \digamma Greek Small Letter Digamma + ^^^^03de% ฯž \Koppa Greek Letter Koppa / Greek Capital Letter Koppa + ^^^^03df% ฯŸ \upkoppa Greek Small Letter Koppa + ^^^^03e0% ฯ  \Sampi Greek Letter Sampi / Greek Capital Letter Sampi + ^^^^03e1% ฯก \upsampi Greek Small Letter Sampi + ^^^^03f0% ฯฐ \varkappa Greek Kappa Symbol / Greek Small Letter Script Kappa + ^^^^03f1% ฯฑ \varrho Greek Rho Symbol / Greek Small Letter Tailed Rho + ^^^^03f4% ฯด \varTheta Greek Capital Theta Symbol + ^^^^03f5% ฯต \epsilon Greek Lunate Epsilon Symbol + ^^^^03f6% ฯถ \backepsilon Greek Reversed Lunate Epsilon Symbol + % 4-digit hex + ^^^^1d2c% แดฌ \^A Modifier Letter Capital A + ^^^^1d2e% แดฎ \^B Modifier Letter Capital B + ^^^^1d30% แดฐ \^D Modifier Letter Capital D + ^^^^1d31% แดฑ \^E Modifier Letter Capital E + ^^^^1d33% แดณ \^G Modifier Letter Capital G + ^^^^1d34% แดด \^H Modifier Letter Capital H + ^^^^1d35% แดต \^I Modifier Letter Capital I + ^^^^1d36% แดถ \^J Modifier Letter Capital J + ^^^^1d37% แดท \^K Modifier Letter Capital K + ^^^^1d38% แดธ \^L Modifier Letter Capital L + ^^^^1d39% แดน \^M Modifier Letter Capital M + ^^^^1d3a% แดบ \^N Modifier Letter Capital N + ^^^^1d3c% แดผ \^O Modifier Letter Capital O + ^^^^1d3e% แดพ \^P Modifier Letter Capital P + ^^^^1d3f% แดฟ \^R Modifier Letter Capital R + ^^^^1d40% แต€ \^T Modifier Letter Capital T + ^^^^1d41% แต \^U Modifier Letter Capital U + ^^^^1d42% แต‚ \^W Modifier Letter Capital W + ^^^^1d43% แตƒ \^a Modifier Letter Small A + ^^^^1d45% แต… \^alpha Modifier Letter Small Alpha + ^^^^1d47% แต‡ \^b Modifier Letter Small B + ^^^^1d48% แตˆ \^d Modifier Letter Small D + ^^^^1d49% แต‰ \^e Modifier Letter Small E + ^^^^1d4b% แต‹ \^epsilon Modifier Letter Small Open E + ^^^^1d4d% แต \^g Modifier Letter Small G + ^^^^1d4f% แต \^k Modifier Letter Small K + ^^^^1d50% แต \^m Modifier Letter Small M + ^^^^1d52% แต’ \^o Modifier Letter Small O + ^^^^1d56% แต– \^p Modifier Letter Small P + ^^^^1d57% แต— \^t Modifier Letter Small T + ^^^^1d58% แต˜ \^u Modifier Letter Small U + ^^^^1d5b% แต› \^v Modifier Letter Small V + ^^^^1d5d% แต \^beta Modifier Letter Small Beta + ^^^^1d5e% แตž \^gamma Modifier Letter Small Greek Gamma + ^^^^1d5f% แตŸ \^delta Modifier Letter Small Delta + ^^^^1d60% แต  \^phi Modifier Letter Small Greek Phi + ^^^^1d61% แตก \^chi Modifier Letter Small Chi + ^^^^1d62% แตข \_i Latin Subscript Small Letter I + ^^^^1d63% แตฃ \_r Latin Subscript Small Letter R + ^^^^1d64% แตค \_u Latin Subscript Small Letter U + ^^^^1d65% แตฅ \_v Latin Subscript Small Letter V + ^^^^1d66% แตฆ \_beta Greek Subscript Small Letter Beta + ^^^^1d67% แตง \_gamma Greek Subscript Small Letter Gamma + ^^^^1d68% แตจ \_rho Greek Subscript Small Letter Rho + ^^^^1d69% แตฉ \_phi Greek Subscript Small Letter Phi + ^^^^1d6a% แตช \_chi Greek Subscript Small Letter Chi + ^^^^1d9c% แถœ \^c Modifier Letter Small C + ^^^^1da0% แถ  \^f Modifier Letter Small F + ^^^^1da5% แถฅ \^iota Modifier Letter Small Iota + ^^^^1db2% แถฒ \^Phi Modifier Letter Small Phi + ^^^^1dbb% แถป \^z Modifier Letter Small Z + ^^^^1dbf% แถฟ \^theta Modifier Letter Small Theta + ^^^^2002% โ€‚ \enspace En Space + ^^^^2003% โ€ƒ \quad Em Space + ^^^^2005% โ€… \thickspace Four-Per-Em Space + ^^^^2009% โ€‰ \thinspace Thin Space + ^^^^200a% โ€Š \hspace Hair Space + ^^^^2013% โ€“ \endash En Dash + ^^^^2014% โ€” \emdash Em Dash + ^^^^2016% โ€– \Vert Double Vertical Line / Double Vertical Bar + ^^^^2018% โ€˜ \lq Left Single Quotation Mark / Single Turned Comma Quotation Mark + ^^^^2019% โ€™ \rq Right Single Quotation Mark / Single Comma Quotation Mark + ^^^^201b% โ€› \reapos Single High-Reversed-9 Quotation Mark / Single Reversed Comma Quotation Mark + ^^^^201c% โ€œ \quotedblleft Left Double Quotation Mark / Double Turned Comma Quotation Mark + ^^^^201d% โ€ \quotedblright Right Double Quotation Mark / Double Comma Quotation Mark + ^^^^2020% โ€  \dagger Dagger + ^^^^2021% โ€ก \ddagger Double Dagger + ^^^^2022% โ€ข \bullet Bullet + ^^^^2026% โ€ฆ \dots, \ldots Horizontal Ellipsis + ^^^^2030% โ€ฐ \perthousand Per Mille Sign + ^^^^2031% โ€ฑ \pertenthousand Per Ten Thousand Sign + ^^^^2032% โ€ฒ \prime Prime + ^^^^2033% โ€ณ \pprime Double Prime + ^^^^2034% โ€ด \ppprime Triple Prime + ^^^^2035% โ€ต \backprime Reversed Prime + ^^^^2036% โ€ถ \backpprime Reversed Double Prime + ^^^^2037% โ€ท \backppprime Reversed Triple Prime + ^^^^2039% โ€น \guilsinglleft Single Left-Pointing Angle Quotation Mark / Left Pointing Single Guillemet + ^^^^203a% โ€บ \guilsinglright Single Right-Pointing Angle Quotation Mark / Right Pointing Single Guillemet + ^^^^203c% โ€ผ \:bangbang: Double Exclamation Mark + ^^^^2040% โ€ \tieconcat Character Tie + ^^^^2049% โ‰ \:interrobang: Exclamation Question Mark + ^^^^2057% โ— \pppprime Quadruple Prime + ^^^^205d% โ \tricolon Tricolon + ^^^^2060% โ  \nolinebreak Word Joiner + ^^^^2070% โฐ \^0 Superscript Zero / Superscript Digit Zero + ^^^^2071% โฑ \^i Superscript Latin Small Letter I + ^^^^2074% โด \^4 Superscript Four / Superscript Digit Four + ^^^^2075% โต \^5 Superscript Five / Superscript Digit Five + ^^^^2076% โถ \^6 Superscript Six / Superscript Digit Six + ^^^^2077% โท \^7 Superscript Seven / Superscript Digit Seven + ^^^^2078% โธ \^8 Superscript Eight / Superscript Digit Eight + ^^^^2079% โน \^9 Superscript Nine / Superscript Digit Nine + ^^^^207a% โบ \^+ Superscript Plus Sign + ^^^^207b% โป \^- Superscript Minus / Superscript Hyphen-Minus + ^^^^207c% โผ \^= Superscript Equals Sign + ^^^^207d% โฝ \^( Superscript Left Parenthesis / Superscript Opening Parenthesis + ^^^^207e% โพ \^) Superscript Right Parenthesis / Superscript Closing Parenthesis + ^^^^207f% โฟ \^n Superscript Latin Small Letter N + ^^^^2080% โ‚€ \_0 Subscript Zero / Subscript Digit Zero + ^^^^2081% โ‚ \_1 Subscript One / Subscript Digit One + ^^^^2082% โ‚‚ \_2 Subscript Two / Subscript Digit Two + ^^^^2083% โ‚ƒ \_3 Subscript Three / Subscript Digit Three + ^^^^2084% โ‚„ \_4 Subscript Four / Subscript Digit Four + ^^^^2085% โ‚… \_5 Subscript Five / Subscript Digit Five + ^^^^2086% โ‚† \_6 Subscript Six / Subscript Digit Six + ^^^^2087% โ‚‡ \_7 Subscript Seven / Subscript Digit Seven + ^^^^2088% โ‚ˆ \_8 Subscript Eight / Subscript Digit Eight + ^^^^2089% โ‚‰ \_9 Subscript Nine / Subscript Digit Nine + ^^^^208a% โ‚Š \_+ Subscript Plus Sign + ^^^^208b% โ‚‹ \_- Subscript Minus / Subscript Hyphen-Minus + ^^^^208c% โ‚Œ \_= Subscript Equals Sign + ^^^^208d% โ‚ \_( Subscript Left Parenthesis / Subscript Opening Parenthesis + ^^^^208e% โ‚Ž \_) Subscript Right Parenthesis / Subscript Closing Parenthesis + ^^^^2090% โ‚ \_a Latin Subscript Small Letter A + ^^^^2091% โ‚‘ \_e Latin Subscript Small Letter E + ^^^^2092% โ‚’ \_o Latin Subscript Small Letter O + ^^^^2093% โ‚“ \_x Latin Subscript Small Letter X + ^^^^2094% โ‚” \_schwa Latin Subscript Small Letter Schwa + ^^^^2095% โ‚• \_h Latin Subscript Small Letter H + ^^^^2096% โ‚– \_k Latin Subscript Small Letter K + ^^^^2097% โ‚— \_l Latin Subscript Small Letter L + ^^^^2098% โ‚˜ \_m Latin Subscript Small Letter M + ^^^^2099% โ‚™ \_n Latin Subscript Small Letter N + ^^^^209a% โ‚š \_p Latin Subscript Small Letter P + ^^^^209b% โ‚› \_s Latin Subscript Small Letter S + ^^^^209c% โ‚œ \_t Latin Subscript Small Letter T + ^^^^20a7% โ‚ง \pes Peseta Sign + ^^^^20ac% โ‚ฌ \euro Euro Sign + ^^^^20d0% โƒ \leftharpoonaccent Combining Left Harpoon Above / Non-Spacing Left Harpoon Above + ^^^^20d1% โƒ‘ \rightharpoonaccent Combining Right Harpoon Above / Non-Spacing Right Harpoon Above + ^^^^20d2% โƒ’ \vertoverlay Combining Long Vertical Line Overlay / Non-Spacing Long Vertical Bar Overlay + ^^^^20d6% โƒ– \overleftarrow Combining Left Arrow Above / Non-Spacing Left Arrow Above + ^^^^20d7% โƒ— \vec Combining Right Arrow Above / Non-Spacing Right Arrow Above + ^^^^20db% โƒ› \dddot Combining Three Dots Above / Non-Spacing Three Dots Above + ^^^^20dc% โƒœ \ddddot Combining Four Dots Above / Non-Spacing Four Dots Above + ^^^^20dd% โƒ \enclosecircle Combining Enclosing Circle / Enclosing Circle + ^^^^20de% โƒž \enclosesquare Combining Enclosing Square / Enclosing Square + ^^^^20df% โƒŸ \enclosediamond Combining Enclosing Diamond / Enclosing Diamond + ^^^^20e1% โƒก \overleftrightarrow Combining Left Right Arrow Above / Non-Spacing Left Right Arrow Above + ^^^^20e4% โƒค \enclosetriangle Combining Enclosing Upward Pointing Triangle + ^^^^20e7% โƒง \annuity Combining Annuity Symbol + ^^^^20e8% โƒจ \threeunderdot Combining Triple Underdot + ^^^^20e9% โƒฉ \widebridgeabove Combining Wide Bridge Above + ^^^^20ec% โƒฌ \underrightharpoondown Combining Rightwards Harpoon With Barb Downwards + ^^^^20ed% โƒญ \underleftharpoondown Combining Leftwards Harpoon With Barb Downwards + ^^^^20ee% โƒฎ \underleftarrow Combining Left Arrow Below + ^^^^20ef% โƒฏ \underrightarrow Combining Right Arrow Below + ^^^^20f0% โƒฐ \asteraccent Combining Asterisk Above + ^^^^2102% โ„‚ \bbC Double-Struck Capital C / Double-Struck C + ^^^^2107% โ„‡ \eulermascheroni Euler Constant / Eulers + ^^^^210a% โ„Š \scrg Script Small G + ^^^^210b% โ„‹ \scrH Script Capital H / Script H + ^^^^210c% โ„Œ \frakH Black-Letter Capital H / Black-Letter H + ^^^^210d% โ„ \bbH Double-Struck Capital H / Double-Struck H + ^^^^210e% โ„Ž \planck Planck Constant + ^^^^210f% โ„ \hslash Planck Constant Over Two Pi / Planck Constant Over 2 Pi + ^^^^2110% โ„ \scrI Script Capital I / Script I + ^^^^2111% โ„‘ \Im Black-Letter Capital I / Black-Letter I + ^^^^2112% โ„’ \scrL Script Capital L / Script L + ^^^^2113% โ„“ \ell Script Small L + ^^^^2115% โ„• \bbN Double-Struck Capital N / Double-Struck N + ^^^^2116% โ„– \numero Numero Sign / Numero + ^^^^2118% โ„˜ \wp Script Capital P / Script P + ^^^^2119% โ„™ \bbP Double-Struck Capital P / Double-Struck P + ^^^^211a% โ„š \bbQ Double-Struck Capital Q / Double-Struck Q + ^^^^211b% โ„› \scrR Script Capital R / Script R + ^^^^211c% โ„œ \Re Black-Letter Capital R / Black-Letter R + ^^^^211d% โ„ \bbR Double-Struck Capital R / Double-Struck R + ^^^^211e% โ„ž \xrat Prescription Take + ^^^^2122% โ„ข \trademark, \:tm: Trade Mark Sign / Trademark + ^^^^2124% โ„ค \bbZ Double-Struck Capital Z / Double-Struck Z + ^^^^2126% โ„ฆ \ohm Ohm Sign / Ohm + ^^^^2127% โ„ง \mho Inverted Ohm Sign / Mho + ^^^^2128% โ„จ \frakZ Black-Letter Capital Z / Black-Letter Z + ^^^^2129% โ„ฉ \turnediota Turned Greek Small Letter Iota + ^^^^212b% โ„ซ \Angstrom Angstrom Sign / Angstrom Unit + ^^^^212c% โ„ฌ \scrB Script Capital B / Script B + ^^^^212d% โ„ญ \frakC Black-Letter Capital C / Black-Letter C + ^^^^212f% โ„ฏ \scre, \euler Script Small E + ^^^^2130% โ„ฐ \scrE Script Capital E / Script E + ^^^^2131% โ„ฑ \scrF Script Capital F / Script F + ^^^^2132% โ„ฒ \Finv Turned Capital F / Turned F + ^^^^2133% โ„ณ \scrM Script Capital M / Script M + ^^^^2134% โ„ด \scro Script Small O + ^^^^2135% โ„ต \aleph Alef Symbol / First Transfinite Cardinal + ^^^^2136% โ„ถ \beth Bet Symbol / Second Transfinite Cardinal + ^^^^2137% โ„ท \gimel Gimel Symbol / Third Transfinite Cardinal + ^^^^2138% โ„ธ \daleth Dalet Symbol / Fourth Transfinite Cardinal + ^^^^2139% โ„น \:information_source: Information Source + ^^^^213c% โ„ผ \bbpi Double-Struck Small Pi + ^^^^213d% โ„ฝ \bbgamma Double-Struck Small Gamma + ^^^^213e% โ„พ \bbGamma Double-Struck Capital Gamma + ^^^^213f% โ„ฟ \bbPi Double-Struck Capital Pi + ^^^^2140% โ…€ \bbsum Double-Struck N-Ary Summation + ^^^^2141% โ… \Game Turned Sans-Serif Capital G + ^^^^2142% โ…‚ \sansLturned Turned Sans-Serif Capital L + ^^^^2143% โ…ƒ \sansLmirrored Reversed Sans-Serif Capital L + ^^^^2144% โ…„ \Yup Turned Sans-Serif Capital Y + ^^^^2145% โ…… \bbiD Double-Struck Italic Capital D + ^^^^2146% โ…† \bbid Double-Struck Italic Small D + ^^^^2147% โ…‡ \bbie Double-Struck Italic Small E + ^^^^2148% โ…ˆ \bbii Double-Struck Italic Small I + ^^^^2149% โ…‰ \bbij Double-Struck Italic Small J + ^^^^214a% โ…Š \PropertyLine Property Line + ^^^^214b% โ…‹ \upand Turned Ampersand + ^^^^2150% โ… \1/7 Vulgar Fraction One Seventh + ^^^^2151% โ…‘ \1/9 Vulgar Fraction One Ninth + ^^^^2152% โ…’ \1/10 Vulgar Fraction One Tenth + ^^^^2153% โ…“ \1/3 Vulgar Fraction One Third / Fraction One Third + ^^^^2154% โ…” \2/3 Vulgar Fraction Two Thirds / Fraction Two Thirds + ^^^^2155% โ…• \1/5 Vulgar Fraction One Fifth / Fraction One Fifth + ^^^^2156% โ…– \2/5 Vulgar Fraction Two Fifths / Fraction Two Fifths + ^^^^2157% โ…— \3/5 Vulgar Fraction Three Fifths / Fraction Three Fifths + ^^^^2158% โ…˜ \4/5 Vulgar Fraction Four Fifths / Fraction Four Fifths + ^^^^2159% โ…™ \1/6 Vulgar Fraction One Sixth / Fraction One Sixth + ^^^^215a% โ…š \5/6 Vulgar Fraction Five Sixths / Fraction Five Sixths + ^^^^215b% โ…› \1/8 Vulgar Fraction One Eighth / Fraction One Eighth + ^^^^215c% โ…œ \3/8 Vulgar Fraction Three Eighths / Fraction Three Eighths + ^^^^215d% โ… \5/8 Vulgar Fraction Five Eighths / Fraction Five Eighths + ^^^^215e% โ…ž \7/8 Vulgar Fraction Seven Eighths / Fraction Seven Eighths + ^^^^215f% โ…Ÿ \1/ Fraction Numerator One + ^^^^2189% โ†‰ \0/3 Vulgar Fraction Zero Thirds + ^^^^2190% โ† \leftarrow Leftwards Arrow / Left Arrow + ^^^^2191% โ†‘ \uparrow Upwards Arrow / Up Arrow + ^^^^2192% โ†’ \to, \rightarrow Rightwards Arrow / Right Arrow + ^^^^2193% โ†“ \downarrow Downwards Arrow / Down Arrow + ^^^^2194% โ†” \leftrightarrow, \:left_right_arrow: Left Right Arrow + ^^^^2195% โ†• \updownarrow, \:arrow_up_down: Up Down Arrow + ^^^^2196% โ†– \nwarrow, \:arrow_upper_left: North West Arrow / Upper Left Arrow + ^^^^2197% โ†— \nearrow, \:arrow_upper_right: North East Arrow / Upper Right Arrow + ^^^^2198% โ†˜ \searrow, \:arrow_lower_right: South East Arrow / Lower Right Arrow + ^^^^2199% โ†™ \swarrow, \:arrow_lower_left: South West Arrow / Lower Left Arrow + ^^^^219a% โ†š \nleftarrow Leftwards Arrow With Stroke / Left Arrow With Stroke + ^^^^219b% โ†› \nrightarrow Rightwards Arrow With Stroke / Right Arrow With Stroke + ^^^^219c% โ†œ \leftwavearrow Leftwards Wave Arrow / Left Wave Arrow + ^^^^219d% โ† \rightwavearrow Rightwards Wave Arrow / Right Wave Arrow + ^^^^219e% โ†ž \twoheadleftarrow Leftwards Two Headed Arrow / Left Two Headed Arrow + ^^^^219f% โ†Ÿ \twoheaduparrow Upwards Two Headed Arrow / Up Two Headed Arrow + ^^^^21a0% โ†  \twoheadrightarrow Rightwards Two Headed Arrow / Right Two Headed Arrow + ^^^^21a1% โ†ก \twoheaddownarrow Downwards Two Headed Arrow / Down Two Headed Arrow + ^^^^21a2% โ†ข \leftarrowtail Leftwards Arrow With Tail / Left Arrow With Tail + ^^^^21a3% โ†ฃ \rightarrowtail Rightwards Arrow With Tail / Right Arrow With Tail + ^^^^21a4% โ†ค \mapsfrom Leftwards Arrow From Bar / Left Arrow From Bar + ^^^^21a5% โ†ฅ \mapsup Upwards Arrow From Bar / Up Arrow From Bar + ^^^^21a6% โ†ฆ \mapsto Rightwards Arrow From Bar / Right Arrow From Bar + ^^^^21a7% โ†ง \mapsdown Downwards Arrow From Bar / Down Arrow From Bar + ^^^^21a8% โ†จ \updownarrowbar Up Down Arrow With Base + ^^^^21a9% โ†ฉ \hookleftarrow, \:leftwards_arrow_with_hook: Leftwards Arrow With Hook / Left Arrow With Hook + ^^^^21aa% โ†ช \hookrightarrow, \:arrow_right_hook: Rightwards Arrow With Hook / Right Arrow With Hook + ^^^^21ab% โ†ซ \looparrowleft Leftwards Arrow With Loop / Left Arrow With Loop + ^^^^21ac% โ†ฌ \looparrowright Rightwards Arrow With Loop / Right Arrow With Loop + ^^^^21ad% โ†ญ \leftrightsquigarrow Left Right Wave Arrow + ^^^^21ae% โ†ฎ \nleftrightarrow Left Right Arrow With Stroke + ^^^^21af% โ†ฏ \downzigzagarrow Downwards Zigzag Arrow / Down Zigzag Arrow + ^^^^21b0% โ†ฐ \Lsh Upwards Arrow With Tip Leftwards / Up Arrow With Tip Left + ^^^^21b1% โ†ฑ \Rsh Upwards Arrow With Tip Rightwards / Up Arrow With Tip Right + ^^^^21b2% โ†ฒ \Ldsh Downwards Arrow With Tip Leftwards / Down Arrow With Tip Left + ^^^^21b3% โ†ณ \Rdsh Downwards Arrow With Tip Rightwards / Down Arrow With Tip Right + ^^^^21b4% โ†ด \linefeed Rightwards Arrow With Corner Downwards / Right Arrow With Corner Down + ^^^^21b5% โ†ต \carriagereturn Downwards Arrow With Corner Leftwards / Down Arrow With Corner Left + ^^^^21b6% โ†ถ \curvearrowleft Anticlockwise Top Semicircle Arrow + ^^^^21b7% โ†ท \curvearrowright Clockwise Top Semicircle Arrow + ^^^^21b8% โ†ธ \barovernorthwestarrow North West Arrow To Long Bar / Upper Left Arrow To Long Bar + ^^^^21b9% โ†น \barleftarrowrightarrowbar Leftwards Arrow To Bar Over Rightwards Arrow To Bar / Left Arrow To Bar Over Right Arrow To Bar + ^^^^21ba% โ†บ \circlearrowleft Anticlockwise Open Circle Arrow + ^^^^21bb% โ†ป \circlearrowright Clockwise Open Circle Arrow + ^^^^21bc% โ†ผ \leftharpoonup Leftwards Harpoon With Barb Upwards / Left Harpoon With Barb Up + ^^^^21bd% โ†ฝ \leftharpoondown Leftwards Harpoon With Barb Downwards / Left Harpoon With Barb Down + ^^^^21be% โ†พ \upharpoonright Upwards Harpoon With Barb Rightwards / Up Harpoon With Barb Right + ^^^^21bf% โ†ฟ \upharpoonleft Upwards Harpoon With Barb Leftwards / Up Harpoon With Barb Left + ^^^^21c0% โ‡€ \rightharpoonup Rightwards Harpoon With Barb Upwards / Right Harpoon With Barb Up + ^^^^21c1% โ‡ \rightharpoondown Rightwards Harpoon With Barb Downwards / Right Harpoon With Barb Down + ^^^^21c2% โ‡‚ \downharpoonright Downwards Harpoon With Barb Rightwards / Down Harpoon With Barb Right + ^^^^21c3% โ‡ƒ \downharpoonleft Downwards Harpoon With Barb Leftwards / Down Harpoon With Barb Left + ^^^^21c4% โ‡„ \rightleftarrows Rightwards Arrow Over Leftwards Arrow / Right Arrow Over Left Arrow + ^^^^21c5% โ‡… \dblarrowupdown Upwards Arrow Leftwards Of Downwards Arrow / Up Arrow Left Of Down Arrow + ^^^^21c6% โ‡† \leftrightarrows Leftwards Arrow Over Rightwards Arrow / Left Arrow Over Right Arrow + ^^^^21c7% โ‡‡ \leftleftarrows Leftwards Paired Arrows / Left Paired Arrows + ^^^^21c8% โ‡ˆ \upuparrows Upwards Paired Arrows / Up Paired Arrows + ^^^^21c9% โ‡‰ \rightrightarrows Rightwards Paired Arrows / Right Paired Arrows + ^^^^21ca% โ‡Š \downdownarrows Downwards Paired Arrows / Down Paired Arrows + ^^^^21cb% โ‡‹ \leftrightharpoons Leftwards Harpoon Over Rightwards Harpoon / Left Harpoon Over Right Harpoon + ^^^^21cc% โ‡Œ \rightleftharpoons Rightwards Harpoon Over Leftwards Harpoon / Right Harpoon Over Left Harpoon + ^^^^21cd% โ‡ \nLeftarrow Leftwards Double Arrow With Stroke / Left Double Arrow With Stroke + ^^^^21ce% โ‡Ž \nLeftrightarrow Left Right Double Arrow With Stroke + ^^^^21cf% โ‡ \nRightarrow Rightwards Double Arrow With Stroke / Right Double Arrow With Stroke + ^^^^21d0% โ‡ \Leftarrow Leftwards Double Arrow / Left Double Arrow + ^^^^21d1% โ‡‘ \Uparrow Upwards Double Arrow / Up Double Arrow + ^^^^21d2% โ‡’ \Rightarrow Rightwards Double Arrow / Right Double Arrow + ^^^^21d3% โ‡“ \Downarrow Downwards Double Arrow / Down Double Arrow + ^^^^21d4% โ‡” \Leftrightarrow Left Right Double Arrow + ^^^^21d5% โ‡• \Updownarrow Up Down Double Arrow + ^^^^21d6% โ‡– \Nwarrow North West Double Arrow / Upper Left Double Arrow + ^^^^21d7% โ‡— \Nearrow North East Double Arrow / Upper Right Double Arrow + ^^^^21d8% โ‡˜ \Searrow South East Double Arrow / Lower Right Double Arrow + ^^^^21d9% โ‡™ \Swarrow South West Double Arrow / Lower Left Double Arrow + ^^^^21da% โ‡š \Lleftarrow Leftwards Triple Arrow / Left Triple Arrow + ^^^^21db% โ‡› \Rrightarrow Rightwards Triple Arrow / Right Triple Arrow + ^^^^21dc% โ‡œ \leftsquigarrow Leftwards Squiggle Arrow / Left Squiggle Arrow + ^^^^21dd% โ‡ \rightsquigarrow Rightwards Squiggle Arrow / Right Squiggle Arrow + ^^^^21de% โ‡ž \nHuparrow Upwards Arrow With Double Stroke / Up Arrow With Double Stroke + ^^^^21df% โ‡Ÿ \nHdownarrow Downwards Arrow With Double Stroke / Down Arrow With Double Stroke + ^^^^21e0% โ‡  \leftdasharrow Leftwards Dashed Arrow / Left Dashed Arrow + ^^^^21e1% โ‡ก \updasharrow Upwards Dashed Arrow / Up Dashed Arrow + ^^^^21e2% โ‡ข \rightdasharrow Rightwards Dashed Arrow / Right Dashed Arrow + ^^^^21e3% โ‡ฃ \downdasharrow Downwards Dashed Arrow / Down Dashed Arrow + ^^^^21e4% โ‡ค \barleftarrow Leftwards Arrow To Bar / Left Arrow To Bar + ^^^^21e5% โ‡ฅ \rightarrowbar Rightwards Arrow To Bar / Right Arrow To Bar + ^^^^21e6% โ‡ฆ \leftwhitearrow Leftwards White Arrow / White Left Arrow + ^^^^21e7% โ‡ง \upwhitearrow Upwards White Arrow / White Up Arrow + ^^^^21e8% โ‡จ \rightwhitearrow Rightwards White Arrow / White Right Arrow + ^^^^21e9% โ‡ฉ \downwhitearrow Downwards White Arrow / White Down Arrow + ^^^^21ea% โ‡ช \whitearrowupfrombar Upwards White Arrow From Bar / White Up Arrow From Bar + ^^^^21f4% โ‡ด \circleonrightarrow Right Arrow With Small Circle + ^^^^21f5% โ‡ต \DownArrowUpArrow Downwards Arrow Leftwards Of Upwards Arrow + ^^^^21f6% โ‡ถ \rightthreearrows Three Rightwards Arrows + ^^^^21f7% โ‡ท \nvleftarrow Leftwards Arrow With Vertical Stroke + ^^^^21f8% โ‡ธ \nvrightarrow Rightwards Arrow With Vertical Stroke + ^^^^21f9% โ‡น \nvleftrightarrow Left Right Arrow With Vertical Stroke + ^^^^21fa% โ‡บ \nVleftarrow Leftwards Arrow With Double Vertical Stroke + ^^^^21fb% โ‡ป \nVrightarrow Rightwards Arrow With Double Vertical Stroke + ^^^^21fc% โ‡ผ \nVleftrightarrow Left Right Arrow With Double Vertical Stroke + ^^^^21fd% โ‡ฝ \leftarrowtriangle Leftwards Open-Headed Arrow + ^^^^21fe% โ‡พ \rightarrowtriangle Rightwards Open-Headed Arrow + ^^^^21ff% โ‡ฟ \leftrightarrowtriangle Left Right Open-Headed Arrow + ^^^^2200% โˆ€ \forall For All + ^^^^2201% โˆ \complement Complement + ^^^^2202% โˆ‚ \partial Partial Differential + ^^^^2203% โˆƒ \exists There Exists + ^^^^2204% โˆ„ \nexists There Does Not Exist + ^^^^2205% โˆ… \varnothing, \emptyset Empty Set + ^^^^2206% โˆ† \increment Increment + ^^^^2207% โˆ‡ \del, \nabla Nabla + ^^^^2208% โˆˆ \in Element Of + ^^^^2209% โˆ‰ \notin Not An Element Of + ^^^^220a% โˆŠ \smallin Small Element Of + ^^^^220b% โˆ‹ \ni Contains As Member + ^^^^220c% โˆŒ \nni Does Not Contain As Member + ^^^^220d% โˆ \smallni Small Contains As Member + ^^^^220e% โˆŽ \QED End Of Proof + ^^^^220f% โˆ \prod N-Ary Product + ^^^^2210% โˆ \coprod N-Ary Coproduct + ^^^^2211% โˆ‘ \sum N-Ary Summation + ^^^^2212% โˆ’ \minus Minus Sign + ^^^^2213% โˆ“ \mp Minus-Or-Plus Sign + ^^^^2214% โˆ” \dotplus Dot Plus + ^^^^2216% โˆ– \setminus Set Minus + ^^^^2217% โˆ— \ast Asterisk Operator + ^^^^2218% โˆ˜ \circ Ring Operator + ^^^^2219% โˆ™ \vysmblkcircle Bullet Operator + ^^^^221a% โˆš \surd, \sqrt Square Root + ^^^^221b% โˆ› \cbrt Cube Root + ^^^^221c% โˆœ \fourthroot Fourth Root + ^^^^221d% โˆ \propto Proportional To + ^^^^221e% โˆž \infty Infinity + ^^^^221f% โˆŸ \rightangle Right Angle + ^^^^2220% โˆ  \angle Angle + ^^^^2221% โˆก \measuredangle Measured Angle + ^^^^2222% โˆข \sphericalangle Spherical Angle + ^^^^2223% โˆฃ \mid Divides + ^^^^2224% โˆค \nmid Does Not Divide + ^^^^2225% โˆฅ \parallel Parallel To + ^^^^2226% โˆฆ \nparallel Not Parallel To + ^^^^2227% โˆง \wedge Logical And + ^^^^2228% โˆจ \vee Logical Or + ^^^^2229% โˆฉ \cap Intersection + ^^^^222a% โˆช \cup Union + ^^^^222b% โˆซ \int Integral + ^^^^222c% โˆฌ \iint Double Integral + ^^^^222d% โˆญ \iiint Triple Integral + ^^^^222e% โˆฎ \oint Contour Integral + ^^^^222f% โˆฏ \oiint Surface Integral + ^^^^2230% โˆฐ \oiiint Volume Integral + ^^^^2231% โˆฑ \clwintegral Clockwise Integral + ^^^^2232% โˆฒ \varointclockwise Clockwise Contour Integral + ^^^^2233% โˆณ \ointctrclockwise Anticlockwise Contour Integral + ^^^^2234% โˆด \therefore Therefore + ^^^^2235% โˆต \because Because + ^^^^2237% โˆท \Colon Proportion + ^^^^2238% โˆธ \dotminus Dot Minus + ^^^^223a% โˆบ \dotsminusdots Geometric Proportion + ^^^^223b% โˆป \kernelcontraction Homothetic + ^^^^223c% โˆผ \sim Tilde Operator + ^^^^223d% โˆฝ \backsim Reversed Tilde + ^^^^223e% โˆพ \lazysinv Inverted Lazy S + ^^^^223f% โˆฟ \sinewave Sine Wave + ^^^^2240% โ‰€ \wr Wreath Product + ^^^^2241% โ‰ \nsim Not Tilde + ^^^^2242% โ‰‚ \eqsim Minus Tilde + ^^^^2242% + ^^^^0338% โ‰‚ฬธ \neqsim Minus Tilde + Combining Long Solidus Overlay / Non-Spacing Long Slash Overlay + ^^^^2243% โ‰ƒ \simeq Asymptotically Equal To + ^^^^2244% โ‰„ \nsime Not Asymptotically Equal To + ^^^^2245% โ‰… \cong Approximately Equal To + ^^^^2246% โ‰† \approxnotequal Approximately But Not Actually Equal To + ^^^^2247% โ‰‡ \ncong Neither Approximately Nor Actually Equal To + ^^^^2248% โ‰ˆ \approx Almost Equal To + ^^^^2249% โ‰‰ \napprox Not Almost Equal To + ^^^^224a% โ‰Š \approxeq Almost Equal Or Equal To + ^^^^224b% โ‰‹ \tildetrpl Triple Tilde + ^^^^224c% โ‰Œ \allequal All Equal To + ^^^^224d% โ‰ \asymp Equivalent To + ^^^^224e% โ‰Ž \Bumpeq Geometrically Equivalent To + ^^^^224e% + ^^^^0338% โ‰Žฬธ \nBumpeq Geometrically Equivalent To + Combining Long Solidus Overlay / Non-Spacing Long Slash Overlay + ^^^^224f% โ‰ \bumpeq Difference Between + ^^^^224f% + ^^^^0338% โ‰ฬธ \nbumpeq Difference Between + Combining Long Solidus Overlay / Non-Spacing Long Slash Overlay + ^^^^2250% โ‰ \doteq Approaches The Limit + ^^^^2251% โ‰‘ \Doteq Geometrically Equal To + ^^^^2252% โ‰’ \fallingdotseq Approximately Equal To Or The Image Of + ^^^^2253% โ‰“ \risingdotseq Image Of Or Approximately Equal To + ^^^^2254% โ‰” \coloneq Colon Equals / Colon Equal + ^^^^2255% โ‰• \eqcolon Equals Colon / Equal Colon + ^^^^2256% โ‰– \eqcirc Ring In Equal To + ^^^^2257% โ‰— \circeq Ring Equal To + ^^^^2258% โ‰˜ \arceq Corresponds To + ^^^^2259% โ‰™ \wedgeq Estimates + ^^^^225a% โ‰š \veeeq Equiangular To + ^^^^225b% โ‰› \starequal Star Equals + ^^^^225c% โ‰œ \triangleq Delta Equal To + ^^^^225d% โ‰ \eqdef Equal To By Definition + ^^^^225e% โ‰ž \measeq Measured By + ^^^^225f% โ‰Ÿ \questeq Questioned Equal To + ^^^^2260% โ‰  \ne Not Equal To + ^^^^2261% โ‰ก \equiv Identical To + ^^^^2262% โ‰ข \nequiv Not Identical To + ^^^^2263% โ‰ฃ \Equiv Strictly Equivalent To + ^^^^2264% โ‰ค \le, \leq Less-Than Or Equal To / Less Than Or Equal To + ^^^^2265% โ‰ฅ \ge, \geq Greater-Than Or Equal To / Greater Than Or Equal To + ^^^^2266% โ‰ฆ \leqq Less-Than Over Equal To / Less Than Over Equal To + ^^^^2267% โ‰ง \geqq Greater-Than Over Equal To / Greater Than Over Equal To + ^^^^2268% โ‰จ \lneqq Less-Than But Not Equal To / Less Than But Not Equal To + ^^^^2268% + ^^^^fe00% โ‰จ๏ธ€ \lvertneqq Less-Than But Not Equal To / Less Than But Not Equal To + Variation Selector-1 + ^^^^2269% โ‰ฉ \gneqq Greater-Than But Not Equal To / Greater Than But Not Equal To + ^^^^2269% + ^^^^fe00% โ‰ฉ๏ธ€ \gvertneqq Greater-Than But Not Equal To / Greater Than But Not Equal To + Variation Selector-1 + ^^^^226a% โ‰ช \ll Much Less-Than / Much Less Than + ^^^^226a% + ^^^^0338% โ‰ชฬธ \NotLessLess Much Less-Than / Much Less Than + Combining Long Solidus Overlay / Non-Spacing Long Slash Overlay + ^^^^226b% โ‰ซ \gg Much Greater-Than / Much Greater Than + ^^^^226b% + ^^^^0338% โ‰ซฬธ \NotGreaterGreater Much Greater-Than / Much Greater Than + Combining Long Solidus Overlay / Non-Spacing Long Slash Overlay + ^^^^226c% โ‰ฌ \between Between + ^^^^226d% โ‰ญ \nasymp Not Equivalent To + ^^^^226e% โ‰ฎ \nless Not Less-Than / Not Less Than + ^^^^226f% โ‰ฏ \ngtr Not Greater-Than / Not Greater Than + ^^^^2270% โ‰ฐ \nleq Neither Less-Than Nor Equal To / Neither Less Than Nor Equal To + ^^^^2271% โ‰ฑ \ngeq Neither Greater-Than Nor Equal To / Neither Greater Than Nor Equal To + ^^^^2272% โ‰ฒ \lesssim Less-Than Or Equivalent To / Less Than Or Equivalent To + ^^^^2273% โ‰ณ \gtrsim Greater-Than Or Equivalent To / Greater Than Or Equivalent To + ^^^^2274% โ‰ด \nlesssim Neither Less-Than Nor Equivalent To / Neither Less Than Nor Equivalent To + ^^^^2275% โ‰ต \ngtrsim Neither Greater-Than Nor Equivalent To / Neither Greater Than Nor Equivalent To + ^^^^2276% โ‰ถ \lessgtr Less-Than Or Greater-Than / Less Than Or Greater Than + ^^^^2277% โ‰ท \gtrless Greater-Than Or Less-Than / Greater Than Or Less Than + ^^^^2278% โ‰ธ \notlessgreater Neither Less-Than Nor Greater-Than / Neither Less Than Nor Greater Than + ^^^^2279% โ‰น \notgreaterless Neither Greater-Than Nor Less-Than / Neither Greater Than Nor Less Than + ^^^^227a% โ‰บ \prec Precedes + ^^^^227b% โ‰ป \succ Succeeds + ^^^^227c% โ‰ผ \preccurlyeq Precedes Or Equal To + ^^^^227d% โ‰ฝ \succcurlyeq Succeeds Or Equal To + ^^^^227e% โ‰พ \precsim Precedes Or Equivalent To + ^^^^227e% + ^^^^0338% โ‰พฬธ \nprecsim Precedes Or Equivalent To + Combining Long Solidus Overlay / Non-Spacing Long Slash Overlay + ^^^^227f% โ‰ฟ \succsim Succeeds Or Equivalent To + ^^^^227f% + ^^^^0338% โ‰ฟฬธ \nsuccsim Succeeds Or Equivalent To + Combining Long Solidus Overlay / Non-Spacing Long Slash Overlay + ^^^^2280% โŠ€ \nprec Does Not Precede + ^^^^2281% โŠ \nsucc Does Not Succeed + ^^^^2282% โŠ‚ \subset Subset Of + ^^^^2283% โŠƒ \supset Superset Of + ^^^^2284% โŠ„ \nsubset Not A Subset Of + ^^^^2285% โŠ… \nsupset Not A Superset Of + ^^^^2286% โŠ† \subseteq Subset Of Or Equal To + ^^^^2287% โŠ‡ \supseteq Superset Of Or Equal To + ^^^^2288% โŠˆ \nsubseteq Neither A Subset Of Nor Equal To + ^^^^2289% โŠ‰ \nsupseteq Neither A Superset Of Nor Equal To + ^^^^228a% โŠŠ \subsetneq Subset Of With Not Equal To / Subset Of Or Not Equal To + ^^^^228a% + ^^^^fe00% โŠŠ๏ธ€ \varsubsetneqq Subset Of With Not Equal To / Subset Of Or Not Equal To + Variation Selector-1 + ^^^^228b% โŠ‹ \supsetneq Superset Of With Not Equal To / Superset Of Or Not Equal To + ^^^^228b% + ^^^^fe00% โŠ‹๏ธ€ \varsupsetneq Superset Of With Not Equal To / Superset Of Or Not Equal To + Variation Selector-1 + ^^^^228d% โŠ \cupdot Multiset Multiplication + ^^^^228e% โŠŽ \uplus Multiset Union + ^^^^228f% โŠ \sqsubset Square Image Of + ^^^^228f% + ^^^^0338% โŠฬธ \NotSquareSubset Square Image Of + Combining Long Solidus Overlay / Non-Spacing Long Slash Overlay + ^^^^2290% โŠ \sqsupset Square Original Of + ^^^^2290% + ^^^^0338% โŠฬธ \NotSquareSuperset Square Original Of + Combining Long Solidus Overlay / Non-Spacing Long Slash Overlay + ^^^^2291% โŠ‘ \sqsubseteq Square Image Of Or Equal To + ^^^^2292% โŠ’ \sqsupseteq Square Original Of Or Equal To + ^^^^2293% โŠ“ \sqcap Square Cap + ^^^^2294% โŠ” \sqcup Square Cup + ^^^^2295% โŠ• \oplus Circled Plus + ^^^^2296% โŠ– \ominus Circled Minus + ^^^^2297% โŠ— \otimes Circled Times + ^^^^2298% โŠ˜ \oslash Circled Division Slash + ^^^^2299% โŠ™ \odot Circled Dot Operator + ^^^^229a% โŠš \circledcirc Circled Ring Operator + ^^^^229b% โŠ› \circledast Circled Asterisk Operator + ^^^^229c% โŠœ \circledequal Circled Equals + ^^^^229d% โŠ \circleddash Circled Dash + ^^^^229e% โŠž \boxplus Squared Plus + ^^^^229f% โŠŸ \boxminus Squared Minus + ^^^^22a0% โŠ  \boxtimes Squared Times + ^^^^22a1% โŠก \boxdot Squared Dot Operator + ^^^^22a2% โŠข \vdash Right Tack + ^^^^22a3% โŠฃ \dashv Left Tack + ^^^^22a4% โŠค \top Down Tack + ^^^^22a5% โŠฅ \bot Up Tack + ^^^^22a7% โŠง \models Models + ^^^^22a8% โŠจ \vDash True + ^^^^22a9% โŠฉ \Vdash Forces + ^^^^22aa% โŠช \Vvdash Triple Vertical Bar Right Turnstile + ^^^^22ab% โŠซ \VDash Double Vertical Bar Double Right Turnstile + ^^^^22ac% โŠฌ \nvdash Does Not Prove + ^^^^22ad% โŠญ \nvDash Not True + ^^^^22ae% โŠฎ \nVdash Does Not Force + ^^^^22af% โŠฏ \nVDash Negated Double Vertical Bar Double Right Turnstile + ^^^^22b0% โŠฐ \prurel Precedes Under Relation + ^^^^22b1% โŠฑ \scurel Succeeds Under Relation + ^^^^22b2% โŠฒ \vartriangleleft Normal Subgroup Of + ^^^^22b3% โŠณ \vartriangleright Contains As Normal Subgroup + ^^^^22b4% โŠด \trianglelefteq Normal Subgroup Of Or Equal To + ^^^^22b5% โŠต \trianglerighteq Contains As Normal Subgroup Or Equal To + ^^^^22b6% โŠถ \original Original Of + ^^^^22b7% โŠท \image Image Of + ^^^^22b8% โŠธ \multimap Multimap + ^^^^22b9% โŠน \hermitconjmatrix Hermitian Conjugate Matrix + ^^^^22ba% โŠบ \intercal Intercalate + ^^^^22bb% โŠป \veebar, \xor Xor + ^^^^22bc% โŠผ \barwedge Nand + ^^^^22bd% โŠฝ \barvee Nor + ^^^^22be% โŠพ \rightanglearc Right Angle With Arc + ^^^^22bf% โŠฟ \varlrtriangle Right Triangle + ^^^^22c0% โ‹€ \bigwedge N-Ary Logical And + ^^^^22c1% โ‹ \bigvee N-Ary Logical Or + ^^^^22c2% โ‹‚ \bigcap N-Ary Intersection + ^^^^22c3% โ‹ƒ \bigcup N-Ary Union + ^^^^22c4% โ‹„ \diamond Diamond Operator + ^^^^22c5% โ‹… \cdot Dot Operator + ^^^^22c6% โ‹† \star Star Operator + ^^^^22c7% โ‹‡ \divideontimes Division Times + ^^^^22c8% โ‹ˆ \bowtie Bowtie + ^^^^22c9% โ‹‰ \ltimes Left Normal Factor Semidirect Product + ^^^^22ca% โ‹Š \rtimes Right Normal Factor Semidirect Product + ^^^^22cb% โ‹‹ \leftthreetimes Left Semidirect Product + ^^^^22cc% โ‹Œ \rightthreetimes Right Semidirect Product + ^^^^22cd% โ‹ \backsimeq Reversed Tilde Equals + ^^^^22ce% โ‹Ž \curlyvee Curly Logical Or + ^^^^22cf% โ‹ \curlywedge Curly Logical And + ^^^^22d0% โ‹ \Subset Double Subset + ^^^^22d1% โ‹‘ \Supset Double Superset + ^^^^22d2% โ‹’ \Cap Double Intersection + ^^^^22d3% โ‹“ \Cup Double Union + ^^^^22d4% โ‹” \pitchfork Pitchfork + ^^^^22d5% โ‹• \equalparallel Equal And Parallel To + ^^^^22d6% โ‹– \lessdot Less-Than With Dot / Less Than With Dot + ^^^^22d7% โ‹— \gtrdot Greater-Than With Dot / Greater Than With Dot + ^^^^22d8% โ‹˜ \verymuchless Very Much Less-Than / Very Much Less Than + ^^^^22d9% โ‹™ \ggg Very Much Greater-Than / Very Much Greater Than + ^^^^22da% โ‹š \lesseqgtr Less-Than Equal To Or Greater-Than / Less Than Equal To Or Greater Than + ^^^^22db% โ‹› \gtreqless Greater-Than Equal To Or Less-Than / Greater Than Equal To Or Less Than + ^^^^22dc% โ‹œ \eqless Equal To Or Less-Than / Equal To Or Less Than + ^^^^22dd% โ‹ \eqgtr Equal To Or Greater-Than / Equal To Or Greater Than + ^^^^22de% โ‹ž \curlyeqprec Equal To Or Precedes + ^^^^22df% โ‹Ÿ \curlyeqsucc Equal To Or Succeeds + ^^^^22e0% โ‹  \npreccurlyeq Does Not Precede Or Equal + ^^^^22e1% โ‹ก \nsucccurlyeq Does Not Succeed Or Equal + ^^^^22e2% โ‹ข \nsqsubseteq Not Square Image Of Or Equal To + ^^^^22e3% โ‹ฃ \nsqsupseteq Not Square Original Of Or Equal To + ^^^^22e4% โ‹ค \sqsubsetneq Square Image Of Or Not Equal To + ^^^^22e5% โ‹ฅ \sqspne Square Original Of Or Not Equal To + ^^^^22e6% โ‹ฆ \lnsim Less-Than But Not Equivalent To / Less Than But Not Equivalent To + ^^^^22e7% โ‹ง \gnsim Greater-Than But Not Equivalent To / Greater Than But Not Equivalent To + ^^^^22e8% โ‹จ \precnsim Precedes But Not Equivalent To + ^^^^22e9% โ‹ฉ \succnsim Succeeds But Not Equivalent To + ^^^^22ea% โ‹ช \ntriangleleft Not Normal Subgroup Of + ^^^^22eb% โ‹ซ \ntriangleright Does Not Contain As Normal Subgroup + ^^^^22ec% โ‹ฌ \ntrianglelefteq Not Normal Subgroup Of Or Equal To + ^^^^22ed% โ‹ญ \ntrianglerighteq Does Not Contain As Normal Subgroup Or Equal + ^^^^22ee% โ‹ฎ \vdots Vertical Ellipsis + ^^^^22ef% โ‹ฏ \cdots Midline Horizontal Ellipsis + ^^^^22f0% โ‹ฐ \adots Up Right Diagonal Ellipsis + ^^^^22f1% โ‹ฑ \ddots Down Right Diagonal Ellipsis + ^^^^22f2% โ‹ฒ \disin Element Of With Long Horizontal Stroke + ^^^^22f3% โ‹ณ \varisins Element Of With Vertical Bar At End Of Horizontal Stroke + ^^^^22f4% โ‹ด \isins Small Element Of With Vertical Bar At End Of Horizontal Stroke + ^^^^22f5% โ‹ต \isindot Element Of With Dot Above + ^^^^22f6% โ‹ถ \varisinobar Element Of With Overbar + ^^^^22f7% โ‹ท \isinobar Small Element Of With Overbar + ^^^^22f8% โ‹ธ \isinvb Element Of With Underbar + ^^^^22f9% โ‹น \isinE Element Of With Two Horizontal Strokes + ^^^^22fa% โ‹บ \nisd Contains With Long Horizontal Stroke + ^^^^22fb% โ‹ป \varnis Contains With Vertical Bar At End Of Horizontal Stroke + ^^^^22fc% โ‹ผ \nis Small Contains With Vertical Bar At End Of Horizontal Stroke + ^^^^22fd% โ‹ฝ \varniobar Contains With Overbar + ^^^^22fe% โ‹พ \niobar Small Contains With Overbar + ^^^^22ff% โ‹ฟ \bagmember Z Notation Bag Membership + ^^^^2300% โŒ€ \diameter Diameter Sign + ^^^^2302% โŒ‚ \house House + ^^^^2305% โŒ… \varbarwedge Projective + ^^^^2306% โŒ† \vardoublebarwedge Perspective + ^^^^2308% โŒˆ \lceil Left Ceiling + ^^^^2309% โŒ‰ \rceil Right Ceiling + ^^^^230a% โŒŠ \lfloor Left Floor + ^^^^230b% โŒ‹ \rfloor Right Floor + ^^^^2310% โŒ \invnot Reversed Not Sign + ^^^^2311% โŒ‘ \sqlozenge Square Lozenge + ^^^^2312% โŒ’ \profline Arc + ^^^^2313% โŒ“ \profsurf Segment + ^^^^2315% โŒ• \recorder Telephone Recorder + ^^^^2317% โŒ— \viewdata Viewdata Square + ^^^^2319% โŒ™ \turnednot Turned Not Sign + ^^^^231a% โŒš \:watch: Watch + ^^^^231b% โŒ› \:hourglass: Hourglass + ^^^^231c% โŒœ \ulcorner Top Left Corner + ^^^^231d% โŒ \urcorner Top Right Corner + ^^^^231e% โŒž \llcorner Bottom Left Corner + ^^^^231f% โŒŸ \lrcorner Bottom Right Corner + ^^^^2322% โŒข \frown Frown + ^^^^2323% โŒฃ \smile Smile + ^^^^232c% โŒฌ \varhexagonlrbonds Benzene Ring + ^^^^2332% โŒฒ \conictaper Conical Taper + ^^^^2336% โŒถ \topbot Apl Functional Symbol I-Beam + ^^^^233d% โŒฝ \obar Apl Functional Symbol Circle Stile + ^^^^233f% โŒฟ \notslash Apl Functional Symbol Slash Bar + ^^^^2340% โ€ \notbackslash Apl Functional Symbol Backslash Bar + ^^^^2353% โ“ \boxupcaret Apl Functional Symbol Quad Up Caret + ^^^^2370% โฐ \boxquestion Apl Functional Symbol Quad Question + ^^^^2394% โŽ” \hexagon Software-Function Symbol + ^^^^23a3% โŽฃ \dlcorn Left Square Bracket Lower Corner + ^^^^23b0% โŽฐ \lmoustache Upper Left Or Lower Right Curly Bracket Section + ^^^^23b1% โŽฑ \rmoustache Upper Right Or Lower Left Curly Bracket Section + ^^^^23b4% โŽด \overbracket Top Square Bracket + ^^^^23b5% โŽต \underbracket Bottom Square Bracket + ^^^^23b6% โŽถ \bbrktbrk Bottom Square Bracket Over Top Square Bracket + ^^^^23b7% โŽท \sqrtbottom Radical Symbol Bottom + ^^^^23b8% โŽธ \lvboxline Left Vertical Box Line + ^^^^23b9% โŽน \rvboxline Right Vertical Box Line + ^^^^23ce% โŽ \varcarriagereturn Return Symbol + ^^^^23de% โž \overbrace Top Curly Bracket + ^^^^23df% โŸ \underbrace Bottom Curly Bracket + ^^^^23e2% โข \trapezium White Trapezium + ^^^^23e3% โฃ \benzenr Benzene Ring With Circle + ^^^^23e4% โค \strns Straightness + ^^^^23e5% โฅ \fltns Flatness + ^^^^23e6% โฆ \accurrent Ac Current + ^^^^23e7% โง \elinters Electrical Intersection + ^^^^23e9% โฉ \:fast_forward: Black Right-Pointing Double Triangle + ^^^^23ea% โช \:rewind: Black Left-Pointing Double Triangle + ^^^^23eb% โซ \:arrow_double_up: Black Up-Pointing Double Triangle + ^^^^23ec% โฌ \:arrow_double_down: Black Down-Pointing Double Triangle + ^^^^23f0% โฐ \:alarm_clock: Alarm Clock + ^^^^23f3% โณ \:hourglass_flowing_sand: Hourglass With Flowing Sand + ^^^^2422% โข \blanksymbol Blank Symbol / Blank + ^^^^2423% โฃ \visiblespace Open Box + ^^^^24c2% โ“‚ \:m: Circled Latin Capital Letter M + ^^^^24c8% โ“ˆ \circledS Circled Latin Capital Letter S + ^^^^2506% โ”† \dshfnc Box Drawings Light Triple Dash Vertical / Forms Light Triple Dash Vertical + ^^^^2519% โ”™ \sqfnw Box Drawings Up Light And Left Heavy / Forms Up Light And Left Heavy + ^^^^2571% โ•ฑ \diagup Box Drawings Light Diagonal Upper Right To Lower Left / Forms Light Diagonal Upper Right To Lower Left + ^^^^2572% โ•ฒ \diagdown Box Drawings Light Diagonal Upper Left To Lower Right / Forms Light Diagonal Upper Left To Lower Right + ^^^^2580% โ–€ \blockuphalf Upper Half Block + ^^^^2584% โ–„ \blocklowhalf Lower Half Block + ^^^^2588% โ–ˆ \blockfull Full Block + ^^^^258c% โ–Œ \blocklefthalf Left Half Block + ^^^^2590% โ– \blockrighthalf Right Half Block + ^^^^2591% โ–‘ \blockqtrshaded Light Shade + ^^^^2592% โ–’ \blockhalfshaded Medium Shade + ^^^^2593% โ–“ \blockthreeqtrshaded Dark Shade + ^^^^25a0% โ–  \blacksquare Black Square + ^^^^25a1% โ–ก \square White Square + ^^^^25a2% โ–ข \squoval White Square With Rounded Corners + ^^^^25a3% โ–ฃ \blackinwhitesquare White Square Containing Black Small Square + ^^^^25a4% โ–ค \squarehfill Square With Horizontal Fill + ^^^^25a5% โ–ฅ \squarevfill Square With Vertical Fill + ^^^^25a6% โ–ฆ \squarehvfill Square With Orthogonal Crosshatch Fill + ^^^^25a7% โ–ง \squarenwsefill Square With Upper Left To Lower Right Fill + ^^^^25a8% โ–จ \squareneswfill Square With Upper Right To Lower Left Fill + ^^^^25a9% โ–ฉ \squarecrossfill Square With Diagonal Crosshatch Fill + ^^^^25aa% โ–ช \smblksquare, \:black_small_square: Black Small Square + ^^^^25ab% โ–ซ \smwhtsquare, \:white_small_square: White Small Square + ^^^^25ac% โ–ฌ \hrectangleblack Black Rectangle + ^^^^25ad% โ–ญ \hrectangle White Rectangle + ^^^^25ae% โ–ฎ \vrectangleblack Black Vertical Rectangle + ^^^^25af% โ–ฏ \vrecto White Vertical Rectangle + ^^^^25b0% โ–ฐ \parallelogramblack Black Parallelogram + ^^^^25b1% โ–ฑ \parallelogram White Parallelogram + ^^^^25b2% โ–ฒ \bigblacktriangleup Black Up-Pointing Triangle / Black Up Pointing Triangle + ^^^^25b3% โ–ณ \bigtriangleup White Up-Pointing Triangle / White Up Pointing Triangle + ^^^^25b4% โ–ด \blacktriangle Black Up-Pointing Small Triangle / Black Up Pointing Small Triangle + ^^^^25b5% โ–ต \vartriangle White Up-Pointing Small Triangle / White Up Pointing Small Triangle + ^^^^25b6% โ–ถ \blacktriangleright, \:arrow_forward: Black Right-Pointing Triangle / Black Right Pointing Triangle + ^^^^25b7% โ–ท \triangleright White Right-Pointing Triangle / White Right Pointing Triangle + ^^^^25b8% โ–ธ \smallblacktriangleright Black Right-Pointing Small Triangle / Black Right Pointing Small Triangle + ^^^^25b9% โ–น \smalltriangleright White Right-Pointing Small Triangle / White Right Pointing Small Triangle + ^^^^25ba% โ–บ \blackpointerright Black Right-Pointing Pointer / Black Right Pointing Pointer + ^^^^25bb% โ–ป \whitepointerright White Right-Pointing Pointer / White Right Pointing Pointer + ^^^^25bc% โ–ผ \bigblacktriangledown Black Down-Pointing Triangle / Black Down Pointing Triangle + ^^^^25bd% โ–ฝ \bigtriangledown White Down-Pointing Triangle / White Down Pointing Triangle + ^^^^25be% โ–พ \blacktriangledown Black Down-Pointing Small Triangle / Black Down Pointing Small Triangle + ^^^^25bf% โ–ฟ \triangledown White Down-Pointing Small Triangle / White Down Pointing Small Triangle + ^^^^25c0% โ—€ \blacktriangleleft, \:arrow_backward: Black Left-Pointing Triangle / Black Left Pointing Triangle + ^^^^25c1% โ— \triangleleft White Left-Pointing Triangle / White Left Pointing Triangle + ^^^^25c2% โ—‚ \smallblacktriangleleft Black Left-Pointing Small Triangle / Black Left Pointing Small Triangle + ^^^^25c3% โ—ƒ \smalltriangleleft White Left-Pointing Small Triangle / White Left Pointing Small Triangle + ^^^^25c4% โ—„ \blackpointerleft Black Left-Pointing Pointer / Black Left Pointing Pointer + ^^^^25c5% โ—… \whitepointerleft White Left-Pointing Pointer / White Left Pointing Pointer + ^^^^25c6% โ—† \mdlgblkdiamond Black Diamond + ^^^^25c7% โ—‡ \mdlgwhtdiamond White Diamond + ^^^^25c8% โ—ˆ \blackinwhitediamond White Diamond Containing Black Small Diamond + ^^^^25c9% โ—‰ \fisheye Fisheye + ^^^^25ca% โ—Š \lozenge Lozenge + ^^^^25cb% โ—‹ \bigcirc White Circle + ^^^^25cc% โ—Œ \dottedcircle Dotted Circle + ^^^^25cd% โ— \circlevertfill Circle With Vertical Fill + ^^^^25ce% โ—Ž \bullseye Bullseye + ^^^^25cf% โ— \mdlgblkcircle Black Circle + ^^^^25d0% โ— \cirfl Circle With Left Half Black + ^^^^25d1% โ—‘ \cirfr Circle With Right Half Black + ^^^^25d2% โ—’ \cirfb Circle With Lower Half Black + ^^^^25d3% โ—“ \circletophalfblack Circle With Upper Half Black + ^^^^25d4% โ—” \circleurquadblack Circle With Upper Right Quadrant Black + ^^^^25d5% โ—• \blackcircleulquadwhite Circle With All But Upper Left Quadrant Black + ^^^^25d6% โ—– \blacklefthalfcircle Left Half Black Circle + ^^^^25d7% โ—— \blackrighthalfcircle Right Half Black Circle + ^^^^25d8% โ—˜ \rvbull Inverse Bullet + ^^^^25d9% โ—™ \inversewhitecircle Inverse White Circle + ^^^^25da% โ—š \invwhiteupperhalfcircle Upper Half Inverse White Circle + ^^^^25db% โ—› \invwhitelowerhalfcircle Lower Half Inverse White Circle + ^^^^25dc% โ—œ \ularc Upper Left Quadrant Circular Arc + ^^^^25dd% โ— \urarc Upper Right Quadrant Circular Arc + ^^^^25de% โ—ž \lrarc Lower Right Quadrant Circular Arc + ^^^^25df% โ—Ÿ \llarc Lower Left Quadrant Circular Arc + ^^^^25e0% โ—  \topsemicircle Upper Half Circle + ^^^^25e1% โ—ก \botsemicircle Lower Half Circle + ^^^^25e2% โ—ข \lrblacktriangle Black Lower Right Triangle + ^^^^25e3% โ—ฃ \llblacktriangle Black Lower Left Triangle + ^^^^25e4% โ—ค \ulblacktriangle Black Upper Left Triangle + ^^^^25e5% โ—ฅ \urblacktriangle Black Upper Right Triangle + ^^^^25e6% โ—ฆ \smwhtcircle White Bullet + ^^^^25e7% โ—ง \sqfl Square With Left Half Black + ^^^^25e8% โ—จ \sqfr Square With Right Half Black + ^^^^25e9% โ—ฉ \squareulblack Square With Upper Left Diagonal Half Black + ^^^^25ea% โ—ช \sqfse Square With Lower Right Diagonal Half Black + ^^^^25eb% โ—ซ \boxbar White Square With Vertical Bisecting Line + ^^^^25ec% โ—ฌ \trianglecdot White Up-Pointing Triangle With Dot / White Up Pointing Triangle With Dot + ^^^^25ed% โ—ญ \triangleleftblack Up-Pointing Triangle With Left Half Black / Up Pointing Triangle With Left Half Black + ^^^^25ee% โ—ฎ \trianglerightblack Up-Pointing Triangle With Right Half Black / Up Pointing Triangle With Right Half Black + ^^^^25ef% โ—ฏ \lgwhtcircle Large Circle + ^^^^25f0% โ—ฐ \squareulquad White Square With Upper Left Quadrant + ^^^^25f1% โ—ฑ \squarellquad White Square With Lower Left Quadrant + ^^^^25f2% โ—ฒ \squarelrquad White Square With Lower Right Quadrant + ^^^^25f3% โ—ณ \squareurquad White Square With Upper Right Quadrant + ^^^^25f4% โ—ด \circleulquad White Circle With Upper Left Quadrant + ^^^^25f5% โ—ต \circlellquad White Circle With Lower Left Quadrant + ^^^^25f6% โ—ถ \circlelrquad White Circle With Lower Right Quadrant + ^^^^25f7% โ—ท \circleurquad White Circle With Upper Right Quadrant + ^^^^25f8% โ—ธ \ultriangle Upper Left Triangle + ^^^^25f9% โ—น \urtriangle Upper Right Triangle + ^^^^25fa% โ—บ \lltriangle Lower Left Triangle + ^^^^25fb% โ—ป \mdwhtsquare, \:white_medium_square: White Medium Square + ^^^^25fc% โ—ผ \mdblksquare, \:black_medium_square: Black Medium Square + ^^^^25fd% โ—ฝ \mdsmwhtsquare, \:white_medium_small_square: White Medium Small Square + ^^^^25fe% โ—พ \mdsmblksquare, \:black_medium_small_square: Black Medium Small Square + ^^^^25ff% โ—ฟ \lrtriangle Lower Right Triangle + ^^^^2600% โ˜€ \:sunny: Black Sun With Rays + ^^^^2601% โ˜ \:cloud: Cloud + ^^^^2605% โ˜… \bigstar Black Star + ^^^^2606% โ˜† \bigwhitestar White Star + ^^^^2609% โ˜‰ \astrosun Sun + ^^^^260e% โ˜Ž \:phone: Black Telephone + ^^^^2611% โ˜‘ \:ballot_box_with_check: Ballot Box With Check + ^^^^2614% โ˜” \:umbrella: Umbrella With Rain Drops + ^^^^2615% โ˜• \:coffee: Hot Beverage + ^^^^261d% โ˜ \:point_up: White Up Pointing Index + ^^^^2621% โ˜ก \danger Caution Sign + ^^^^263a% โ˜บ \:relaxed: White Smiling Face + ^^^^263b% โ˜ป \blacksmiley Black Smiling Face + ^^^^263c% โ˜ผ \sun White Sun With Rays + ^^^^263d% โ˜ฝ \rightmoon First Quarter Moon + ^^^^263e% โ˜พ \leftmoon Last Quarter Moon + ^^^^263f% โ˜ฟ \mercury Mercury + ^^^^2640% โ™€ \venus, \female Female Sign + ^^^^2642% โ™‚ \male, \mars Male Sign + ^^^^2643% โ™ƒ \jupiter Jupiter + ^^^^2644% โ™„ \saturn Saturn + ^^^^2645% โ™… \uranus Uranus + ^^^^2646% โ™† \neptune Neptune + ^^^^2647% โ™‡ \pluto Pluto + ^^^^2648% โ™ˆ \aries, \:aries: Aries + ^^^^2649% โ™‰ \taurus, \:taurus: Taurus + ^^^^264a% โ™Š \gemini, \:gemini: Gemini + ^^^^264b% โ™‹ \cancer, \:cancer: Cancer + ^^^^264c% โ™Œ \leo, \:leo: Leo + ^^^^264d% โ™ \virgo, \:virgo: Virgo + ^^^^264e% โ™Ž \libra, \:libra: Libra + ^^^^264f% โ™ \scorpio, \:scorpius: Scorpius + ^^^^2650% โ™ \sagittarius, \:sagittarius: Sagittarius + ^^^^2651% โ™‘ \capricornus, \:capricorn: Capricorn + ^^^^2652% โ™’ \aquarius, \:aquarius: Aquarius + ^^^^2653% โ™“ \pisces, \:pisces: Pisces + ^^^^2660% โ™  \spadesuit, \:spades: Black Spade Suit + ^^^^2661% โ™ก \heartsuit White Heart Suit + ^^^^2662% โ™ข \diamondsuit White Diamond Suit + ^^^^2663% โ™ฃ \clubsuit, \:clubs: Black Club Suit + ^^^^2664% โ™ค \varspadesuit White Spade Suit + ^^^^2665% โ™ฅ \varheartsuit, \:hearts: Black Heart Suit + ^^^^2666% โ™ฆ \vardiamondsuit, \:diamonds: Black Diamond Suit + ^^^^2667% โ™ง \varclubsuit White Club Suit + ^^^^2668% โ™จ \:hotsprings: Hot Springs + ^^^^2669% โ™ฉ \quarternote Quarter Note + ^^^^266a% โ™ช \eighthnote Eighth Note + ^^^^266b% โ™ซ \twonotes Beamed Eighth Notes / Barred Eighth Notes + ^^^^266d% โ™ญ \flat Music Flat Sign / Flat + ^^^^266e% โ™ฎ \natural Music Natural Sign / Natural + ^^^^266f% โ™ฏ \sharp Music Sharp Sign / Sharp + ^^^^267b% โ™ป \:recycle: Black Universal Recycling Symbol + ^^^^267e% โ™พ \acidfree Permanent Paper Sign + ^^^^267f% โ™ฟ \:wheelchair: Wheelchair Symbol + ^^^^2680% โš€ \dicei Die Face-1 + ^^^^2681% โš \diceii Die Face-2 + ^^^^2682% โš‚ \diceiii Die Face-3 + ^^^^2683% โšƒ \diceiv Die Face-4 + ^^^^2684% โš„ \dicev Die Face-5 + ^^^^2685% โš… \dicevi Die Face-6 + ^^^^2686% โš† \circledrightdot White Circle With Dot Right + ^^^^2687% โš‡ \circledtwodots White Circle With Two Dots + ^^^^2688% โšˆ \blackcircledrightdot Black Circle With White Dot Right + ^^^^2689% โš‰ \blackcircledtwodots Black Circle With Two White Dots + ^^^^2693% โš“ \:anchor: Anchor + ^^^^26a0% โš  \:warning: Warning Sign + ^^^^26a1% โšก \:zap: High Voltage Sign + ^^^^26a5% โšฅ \hermaphrodite Male And Female Sign + ^^^^26aa% โšช \mdwhtcircle, \:white_circle: Medium White Circle + ^^^^26ab% โšซ \mdblkcircle, \:black_circle: Medium Black Circle + ^^^^26ac% โšฌ \mdsmwhtcircle Medium Small White Circle + ^^^^26b2% โšฒ \neuter Neuter + ^^^^26bd% โšฝ \:soccer: Soccer Ball + ^^^^26be% โšพ \:baseball: Baseball + ^^^^26c4% โ›„ \:snowman: Snowman Without Snow + ^^^^26c5% โ›… \:partly_sunny: Sun Behind Cloud + ^^^^26ce% โ›Ž \:ophiuchus: Ophiuchus + ^^^^26d4% โ›” \:no_entry: No Entry + ^^^^26ea% โ›ช \:church: Church + ^^^^26f2% โ›ฒ \:fountain: Fountain + ^^^^26f3% โ›ณ \:golf: Flag In Hole + ^^^^26f5% โ›ต \:boat: Sailboat + ^^^^26fa% โ›บ \:tent: Tent + ^^^^26fd% โ›ฝ \:fuelpump: Fuel Pump + ^^^^2702% โœ‚ \:scissors: Black Scissors + ^^^^2705% โœ… \:white_check_mark: White Heavy Check Mark + ^^^^2708% โœˆ \:airplane: Airplane + ^^^^2709% โœ‰ \:email: Envelope + ^^^^270a% โœŠ \:fist: Raised Fist + ^^^^270b% โœ‹ \:hand: Raised Hand + ^^^^270c% โœŒ \:v: Victory Hand + ^^^^270f% โœ \:pencil2: Pencil + ^^^^2712% โœ’ \:black_nib: Black Nib + ^^^^2713% โœ“ \checkmark Check Mark + ^^^^2714% โœ” \:heavy_check_mark: Heavy Check Mark + ^^^^2716% โœ– \:heavy_multiplication_x: Heavy Multiplication X + ^^^^2720% โœ  \maltese Maltese Cross + ^^^^2728% โœจ \:sparkles: Sparkles + ^^^^272a% โœช \circledstar Circled White Star + ^^^^2733% โœณ \:eight_spoked_asterisk: Eight Spoked Asterisk + ^^^^2734% โœด \:eight_pointed_black_star: Eight Pointed Black Star + ^^^^2736% โœถ \varstar Six Pointed Black Star + ^^^^273d% โœฝ \dingasterisk Heavy Teardrop-Spoked Asterisk + ^^^^2744% โ„ \:snowflake: Snowflake + ^^^^2747% โ‡ \:sparkle: Sparkle + ^^^^274c% โŒ \:x: Cross Mark + ^^^^274e% โŽ \:negative_squared_cross_mark: Negative Squared Cross Mark + ^^^^2753% โ“ \:question: Black Question Mark Ornament + ^^^^2754% โ” \:grey_question: White Question Mark Ornament + ^^^^2755% โ• \:grey_exclamation: White Exclamation Mark Ornament + ^^^^2757% โ— \:exclamation: Heavy Exclamation Mark Symbol + ^^^^2764% โค \:heart: Heavy Black Heart + ^^^^2795% โž• \:heavy_plus_sign: Heavy Plus Sign + ^^^^2796% โž– \:heavy_minus_sign: Heavy Minus Sign + ^^^^2797% โž— \:heavy_division_sign: Heavy Division Sign + ^^^^279b% โž› \draftingarrow Drafting Point Rightwards Arrow / Drafting Point Right Arrow + ^^^^27a1% โžก \:arrow_right: Black Rightwards Arrow / Black Right Arrow + ^^^^27b0% โžฐ \:curly_loop: Curly Loop + ^^^^27bf% โžฟ \:loop: Double Curly Loop + ^^^^27c0% โŸ€ \threedangle Three Dimensional Angle + ^^^^27c1% โŸ \whiteinwhitetriangle White Triangle Containing Small White Triangle + ^^^^27c2% โŸ‚ \perp Perpendicular + ^^^^27c8% โŸˆ \bsolhsub Reverse Solidus Preceding Subset + ^^^^27c9% โŸ‰ \suphsol Superset Preceding Solidus + ^^^^27d1% โŸ‘ \wedgedot And With Dot + ^^^^27d2% โŸ’ \upin Element Of Opening Upwards + ^^^^27d5% โŸ• \leftouterjoin Left Outer Join + ^^^^27d6% โŸ– \rightouterjoin Right Outer Join + ^^^^27d7% โŸ— \fullouterjoin Full Outer Join + ^^^^27d8% โŸ˜ \bigbot Large Up Tack + ^^^^27d9% โŸ™ \bigtop Large Down Tack + ^^^^27e6% โŸฆ \llbracket, \openbracketleft Mathematical Left White Square Bracket + ^^^^27e7% โŸง \openbracketright, \rrbracket Mathematical Right White Square Bracket + ^^^^27e8% โŸจ \langle Mathematical Left Angle Bracket + ^^^^27e9% โŸฉ \rangle Mathematical Right Angle Bracket + ^^^^27f0% โŸฐ \UUparrow Upwards Quadruple Arrow + ^^^^27f1% โŸฑ \DDownarrow Downwards Quadruple Arrow + ^^^^27f5% โŸต \longleftarrow Long Leftwards Arrow + ^^^^27f6% โŸถ \longrightarrow Long Rightwards Arrow + ^^^^27f7% โŸท \longleftrightarrow Long Left Right Arrow + ^^^^27f8% โŸธ \impliedby, \Longleftarrow Long Leftwards Double Arrow + ^^^^27f9% โŸน \implies, \Longrightarrow Long Rightwards Double Arrow + ^^^^27fa% โŸบ \Longleftrightarrow, \iff Long Left Right Double Arrow + ^^^^27fb% โŸป \longmapsfrom Long Leftwards Arrow From Bar + ^^^^27fc% โŸผ \longmapsto Long Rightwards Arrow From Bar + ^^^^27fd% โŸฝ \Longmapsfrom Long Leftwards Double Arrow From Bar + ^^^^27fe% โŸพ \Longmapsto Long Rightwards Double Arrow From Bar + ^^^^27ff% โŸฟ \longrightsquigarrow Long Rightwards Squiggle Arrow + ^^^^2900% โค€ \nvtwoheadrightarrow Rightwards Two-Headed Arrow With Vertical Stroke + ^^^^2901% โค \nVtwoheadrightarrow Rightwards Two-Headed Arrow With Double Vertical Stroke + ^^^^2902% โค‚ \nvLeftarrow Leftwards Double Arrow With Vertical Stroke + ^^^^2903% โคƒ \nvRightarrow Rightwards Double Arrow With Vertical Stroke + ^^^^2904% โค„ \nvLeftrightarrow Left Right Double Arrow With Vertical Stroke + ^^^^2905% โค… \twoheadmapsto Rightwards Two-Headed Arrow From Bar + ^^^^2906% โค† \Mapsfrom Leftwards Double Arrow From Bar + ^^^^2907% โค‡ \Mapsto Rightwards Double Arrow From Bar + ^^^^2908% โคˆ \downarrowbarred Downwards Arrow With Horizontal Stroke + ^^^^2909% โค‰ \uparrowbarred Upwards Arrow With Horizontal Stroke + ^^^^290a% โคŠ \Uuparrow Upwards Triple Arrow + ^^^^290b% โค‹ \Ddownarrow Downwards Triple Arrow + ^^^^290c% โคŒ \leftbkarrow Leftwards Double Dash Arrow + ^^^^290d% โค \bkarow Rightwards Double Dash Arrow + ^^^^290e% โคŽ \leftdbkarrow Leftwards Triple Dash Arrow + ^^^^290f% โค \dbkarow Rightwards Triple Dash Arrow + ^^^^2910% โค \drbkarrow Rightwards Two-Headed Triple Dash Arrow + ^^^^2911% โค‘ \rightdotarrow Rightwards Arrow With Dotted Stem + ^^^^2912% โค’ \UpArrowBar Upwards Arrow To Bar + ^^^^2913% โค“ \DownArrowBar Downwards Arrow To Bar + ^^^^2914% โค” \nvrightarrowtail Rightwards Arrow With Tail With Vertical Stroke + ^^^^2915% โค• \nVrightarrowtail Rightwards Arrow With Tail With Double Vertical Stroke + ^^^^2916% โค– \twoheadrightarrowtail Rightwards Two-Headed Arrow With Tail + ^^^^2917% โค— \nvtwoheadrightarrowtail Rightwards Two-Headed Arrow With Tail With Vertical Stroke + ^^^^2918% โค˜ \nVtwoheadrightarrowtail Rightwards Two-Headed Arrow With Tail With Double Vertical Stroke + ^^^^291d% โค \diamondleftarrow Leftwards Arrow To Black Diamond + ^^^^291e% โคž \rightarrowdiamond Rightwards Arrow To Black Diamond + ^^^^291f% โคŸ \diamondleftarrowbar Leftwards Arrow From Bar To Black Diamond + ^^^^2920% โค  \barrightarrowdiamond Rightwards Arrow From Bar To Black Diamond + ^^^^2925% โคฅ \hksearow South East Arrow With Hook + ^^^^2926% โคฆ \hkswarow South West Arrow With Hook + ^^^^2927% โคง \tona North West Arrow And North East Arrow + ^^^^2928% โคจ \toea North East Arrow And South East Arrow + ^^^^2929% โคฉ \tosa South East Arrow And South West Arrow + ^^^^292a% โคช \towa South West Arrow And North West Arrow + ^^^^292b% โคซ \rdiagovfdiag Rising Diagonal Crossing Falling Diagonal + ^^^^292c% โคฌ \fdiagovrdiag Falling Diagonal Crossing Rising Diagonal + ^^^^292d% โคญ \seovnearrow South East Arrow Crossing North East Arrow + ^^^^292e% โคฎ \neovsearrow North East Arrow Crossing South East Arrow + ^^^^292f% โคฏ \fdiagovnearrow Falling Diagonal Crossing North East Arrow + ^^^^2930% โคฐ \rdiagovsearrow Rising Diagonal Crossing South East Arrow + ^^^^2931% โคฑ \neovnwarrow North East Arrow Crossing North West Arrow + ^^^^2932% โคฒ \nwovnearrow North West Arrow Crossing North East Arrow + ^^^^2934% โคด \:arrow_heading_up: Arrow Pointing Rightwards Then Curving Upwards + ^^^^2935% โคต \:arrow_heading_down: Arrow Pointing Rightwards Then Curving Downwards + ^^^^2942% โฅ‚ \Rlarr Rightwards Arrow Above Short Leftwards Arrow + ^^^^2944% โฅ„ \rLarr Short Rightwards Arrow Above Leftwards Arrow + ^^^^2945% โฅ… \rightarrowplus Rightwards Arrow With Plus Below + ^^^^2946% โฅ† \leftarrowplus Leftwards Arrow With Plus Below + ^^^^2947% โฅ‡ \rarrx Rightwards Arrow Through X + ^^^^2948% โฅˆ \leftrightarrowcircle Left Right Arrow Through Small Circle + ^^^^2949% โฅ‰ \twoheaduparrowcircle Upwards Two-Headed Arrow From Small Circle + ^^^^294a% โฅŠ \leftrightharpoonupdown Left Barb Up Right Barb Down Harpoon + ^^^^294b% โฅ‹ \leftrightharpoondownup Left Barb Down Right Barb Up Harpoon + ^^^^294c% โฅŒ \updownharpoonrightleft Up Barb Right Down Barb Left Harpoon + ^^^^294d% โฅ \updownharpoonleftright Up Barb Left Down Barb Right Harpoon + ^^^^294e% โฅŽ \LeftRightVector Left Barb Up Right Barb Up Harpoon + ^^^^294f% โฅ \RightUpDownVector Up Barb Right Down Barb Right Harpoon + ^^^^2950% โฅ \DownLeftRightVector Left Barb Down Right Barb Down Harpoon + ^^^^2951% โฅ‘ \LeftUpDownVector Up Barb Left Down Barb Left Harpoon + ^^^^2952% โฅ’ \LeftVectorBar Leftwards Harpoon With Barb Up To Bar + ^^^^2953% โฅ“ \RightVectorBar Rightwards Harpoon With Barb Up To Bar + ^^^^2954% โฅ” \RightUpVectorBar Upwards Harpoon With Barb Right To Bar + ^^^^2955% โฅ• \RightDownVectorBar Downwards Harpoon With Barb Right To Bar + ^^^^2956% โฅ– \DownLeftVectorBar Leftwards Harpoon With Barb Down To Bar + ^^^^2957% โฅ— \DownRightVectorBar Rightwards Harpoon With Barb Down To Bar + ^^^^2958% โฅ˜ \LeftUpVectorBar Upwards Harpoon With Barb Left To Bar + ^^^^2959% โฅ™ \LeftDownVectorBar Downwards Harpoon With Barb Left To Bar + ^^^^295a% โฅš \LeftTeeVector Leftwards Harpoon With Barb Up From Bar + ^^^^295b% โฅ› \RightTeeVector Rightwards Harpoon With Barb Up From Bar + ^^^^295c% โฅœ \RightUpTeeVector Upwards Harpoon With Barb Right From Bar + ^^^^295d% โฅ \RightDownTeeVector Downwards Harpoon With Barb Right From Bar + ^^^^295e% โฅž \DownLeftTeeVector Leftwards Harpoon With Barb Down From Bar + ^^^^295f% โฅŸ \DownRightTeeVector Rightwards Harpoon With Barb Down From Bar + ^^^^2960% โฅ  \LeftUpTeeVector Upwards Harpoon With Barb Left From Bar + ^^^^2961% โฅก \LeftDownTeeVector Downwards Harpoon With Barb Left From Bar + ^^^^2962% โฅข \leftharpoonsupdown Leftwards Harpoon With Barb Up Above Leftwards Harpoon With Barb Down + ^^^^2963% โฅฃ \upharpoonsleftright Upwards Harpoon With Barb Left Beside Upwards Harpoon With Barb Right + ^^^^2964% โฅค \rightharpoonsupdown Rightwards Harpoon With Barb Up Above Rightwards Harpoon With Barb Down + ^^^^2965% โฅฅ \downharpoonsleftright Downwards Harpoon With Barb Left Beside Downwards Harpoon With Barb Right + ^^^^2966% โฅฆ \leftrightharpoonsup Leftwards Harpoon With Barb Up Above Rightwards Harpoon With Barb Up + ^^^^2967% โฅง \leftrightharpoonsdown Leftwards Harpoon With Barb Down Above Rightwards Harpoon With Barb Down + ^^^^2968% โฅจ \rightleftharpoonsup Rightwards Harpoon With Barb Up Above Leftwards Harpoon With Barb Up + ^^^^2969% โฅฉ \rightleftharpoonsdown Rightwards Harpoon With Barb Down Above Leftwards Harpoon With Barb Down + ^^^^296a% โฅช \leftharpoonupdash Leftwards Harpoon With Barb Up Above Long Dash + ^^^^296b% โฅซ \dashleftharpoondown Leftwards Harpoon With Barb Down Below Long Dash + ^^^^296c% โฅฌ \rightharpoonupdash Rightwards Harpoon With Barb Up Above Long Dash + ^^^^296d% โฅญ \dashrightharpoondown Rightwards Harpoon With Barb Down Below Long Dash + ^^^^296e% โฅฎ \UpEquilibrium Upwards Harpoon With Barb Left Beside Downwards Harpoon With Barb Right + ^^^^296f% โฅฏ \ReverseUpEquilibrium Downwards Harpoon With Barb Left Beside Upwards Harpoon With Barb Right + ^^^^2970% โฅฐ \RoundImplies Right Double Arrow With Rounded Head + ^^^^2980% โฆ€ \Vvert Triple Vertical Bar Delimiter + ^^^^2986% โฆ† \Elroang Right White Parenthesis + ^^^^2999% โฆ™ \ddfnc Dotted Fence + ^^^^299b% โฆ› \measuredangleleft Measured Angle Opening Left + ^^^^299c% โฆœ \Angle Right Angle Variant With Square + ^^^^299d% โฆ \rightanglemdot Measured Right Angle With Dot + ^^^^299e% โฆž \angles Angle With S Inside + ^^^^299f% โฆŸ \angdnr Acute Angle + ^^^^29a0% โฆ  \lpargt Spherical Angle Opening Left + ^^^^29a1% โฆก \sphericalangleup Spherical Angle Opening Up + ^^^^29a2% โฆข \turnangle Turned Angle + ^^^^29a3% โฆฃ \revangle Reversed Angle + ^^^^29a4% โฆค \angleubar Angle With Underbar + ^^^^29a5% โฆฅ \revangleubar Reversed Angle With Underbar + ^^^^29a6% โฆฆ \wideangledown Oblique Angle Opening Up + ^^^^29a7% โฆง \wideangleup Oblique Angle Opening Down + ^^^^29a8% โฆจ \measanglerutone Measured Angle With Open Arm Ending In Arrow Pointing Up And Right + ^^^^29a9% โฆฉ \measanglelutonw Measured Angle With Open Arm Ending In Arrow Pointing Up And Left + ^^^^29aa% โฆช \measanglerdtose Measured Angle With Open Arm Ending In Arrow Pointing Down And Right + ^^^^29ab% โฆซ \measangleldtosw Measured Angle With Open Arm Ending In Arrow Pointing Down And Left + ^^^^29ac% โฆฌ \measangleurtone Measured Angle With Open Arm Ending In Arrow Pointing Right And Up + ^^^^29ad% โฆญ \measangleultonw Measured Angle With Open Arm Ending In Arrow Pointing Left And Up + ^^^^29ae% โฆฎ \measangledrtose Measured Angle With Open Arm Ending In Arrow Pointing Right And Down + ^^^^29af% โฆฏ \measangledltosw Measured Angle With Open Arm Ending In Arrow Pointing Left And Down + ^^^^29b0% โฆฐ \revemptyset Reversed Empty Set + ^^^^29b1% โฆฑ \emptysetobar Empty Set With Overbar + ^^^^29b2% โฆฒ \emptysetocirc Empty Set With Small Circle Above + ^^^^29b3% โฆณ \emptysetoarr Empty Set With Right Arrow Above + ^^^^29b4% โฆด \emptysetoarrl Empty Set With Left Arrow Above + ^^^^29b7% โฆท \circledparallel Circled Parallel + ^^^^29b8% โฆธ \obslash Circled Reverse Solidus + ^^^^29bc% โฆผ \odotslashdot Circled Anticlockwise-Rotated Division Sign + ^^^^29be% โฆพ \circledwhitebullet Circled White Bullet + ^^^^29bf% โฆฟ \circledbullet Circled Bullet + ^^^^29c0% โง€ \olessthan Circled Less-Than + ^^^^29c1% โง \ogreaterthan Circled Greater-Than + ^^^^29c4% โง„ \boxdiag Squared Rising Diagonal Slash + ^^^^29c5% โง… \boxbslash Squared Falling Diagonal Slash + ^^^^29c6% โง† \boxast Squared Asterisk + ^^^^29c7% โง‡ \boxcircle Squared Small Circle + ^^^^29ca% โงŠ \Lap Triangle With Dot Above + ^^^^29cb% โง‹ \defas Triangle With Underbar + ^^^^29cf% โง \LeftTriangleBar Left Triangle Beside Vertical Bar + ^^^^29cf% + ^^^^0338% โงฬธ \NotLeftTriangleBar Left Triangle Beside Vertical Bar + Combining Long Solidus Overlay / Non-Spacing Long Slash Overlay + ^^^^29d0% โง \RightTriangleBar Vertical Bar Beside Right Triangle + ^^^^29d0% + ^^^^0338% โงฬธ \NotRightTriangleBar Vertical Bar Beside Right Triangle + Combining Long Solidus Overlay / Non-Spacing Long Slash Overlay + ^^^^29df% โงŸ \dualmap Double-Ended Multimap + ^^^^29e1% โงก \lrtriangleeq Increases As + ^^^^29e2% โงข \shuffle Shuffle Product + ^^^^29e3% โงฃ \eparsl Equals Sign And Slanted Parallel + ^^^^29e4% โงค \smeparsl Equals Sign And Slanted Parallel With Tilde Above + ^^^^29e5% โงฅ \eqvparsl Identical To And Slanted Parallel + ^^^^29eb% โงซ \blacklozenge Black Lozenge + ^^^^29f4% โงด \RuleDelayed Rule-Delayed + ^^^^29f6% โงถ \dsol Solidus With Overbar + ^^^^29f7% โงท \rsolbar Reverse Solidus With Horizontal Stroke + ^^^^29fa% โงบ \doubleplus Double Plus + ^^^^29fb% โงป \tripleplus Triple Plus + ^^^^2a00% โจ€ \bigodot N-Ary Circled Dot Operator + ^^^^2a01% โจ \bigoplus N-Ary Circled Plus Operator + ^^^^2a02% โจ‚ \bigotimes N-Ary Circled Times Operator + ^^^^2a03% โจƒ \bigcupdot N-Ary Union Operator With Dot + ^^^^2a04% โจ„ \biguplus N-Ary Union Operator With Plus + ^^^^2a05% โจ… \bigsqcap N-Ary Square Intersection Operator + ^^^^2a06% โจ† \bigsqcup N-Ary Square Union Operator + ^^^^2a07% โจ‡ \conjquant Two Logical And Operator + ^^^^2a08% โจˆ \disjquant Two Logical Or Operator + ^^^^2a09% โจ‰ \bigtimes N-Ary Times Operator + ^^^^2a0a% โจŠ \modtwosum Modulo Two Sum + ^^^^2a0b% โจ‹ \sumint Summation With Integral + ^^^^2a0c% โจŒ \iiiint Quadruple Integral Operator + ^^^^2a0d% โจ \intbar Finite Part Integral + ^^^^2a0e% โจŽ \intBar Integral With Double Stroke + ^^^^2a0f% โจ \clockoint Integral Average With Slash + ^^^^2a10% โจ \cirfnint Circulation Function + ^^^^2a11% โจ‘ \awint Anticlockwise Integration + ^^^^2a12% โจ’ \rppolint Line Integration With Rectangular Path Around Pole + ^^^^2a13% โจ“ \scpolint Line Integration With Semicircular Path Around Pole + ^^^^2a14% โจ” \npolint Line Integration Not Including The Pole + ^^^^2a15% โจ• \pointint Integral Around A Point Operator + ^^^^2a16% โจ– \sqrint Quaternion Integral Operator + ^^^^2a18% โจ˜ \intx Integral With Times Sign + ^^^^2a19% โจ™ \intcap Integral With Intersection + ^^^^2a1a% โจš \intcup Integral With Union + ^^^^2a1b% โจ› \upint Integral With Overbar + ^^^^2a1c% โจœ \lowint Integral With Underbar + ^^^^2a1d% โจ \Join, \join Join + ^^^^2a1f% โจŸ \bbsemi Z Notation Schema Composition + ^^^^2a22% โจข \ringplus Plus Sign With Small Circle Above + ^^^^2a23% โจฃ \plushat Plus Sign With Circumflex Accent Above + ^^^^2a24% โจค \simplus Plus Sign With Tilde Above + ^^^^2a25% โจฅ \plusdot Plus Sign With Dot Below + ^^^^2a26% โจฆ \plussim Plus Sign With Tilde Below + ^^^^2a27% โจง \plussubtwo Plus Sign With Subscript Two + ^^^^2a28% โจจ \plustrif Plus Sign With Black Triangle + ^^^^2a29% โจฉ \commaminus Minus Sign With Comma Above + ^^^^2a2a% โจช \minusdot Minus Sign With Dot Below + ^^^^2a2b% โจซ \minusfdots Minus Sign With Falling Dots + ^^^^2a2c% โจฌ \minusrdots Minus Sign With Rising Dots + ^^^^2a2d% โจญ \opluslhrim Plus Sign In Left Half Circle + ^^^^2a2e% โจฎ \oplusrhrim Plus Sign In Right Half Circle + ^^^^2a2f% โจฏ \Times Vector Or Cross Product + ^^^^2a30% โจฐ \dottimes Multiplication Sign With Dot Above + ^^^^2a31% โจฑ \timesbar Multiplication Sign With Underbar + ^^^^2a32% โจฒ \btimes Semidirect Product With Bottom Closed + ^^^^2a33% โจณ \smashtimes Smash Product + ^^^^2a34% โจด \otimeslhrim Multiplication Sign In Left Half Circle + ^^^^2a35% โจต \otimesrhrim Multiplication Sign In Right Half Circle + ^^^^2a36% โจถ \otimeshat Circled Multiplication Sign With Circumflex Accent + ^^^^2a37% โจท \Otimes Multiplication Sign In Double Circle + ^^^^2a38% โจธ \odiv Circled Division Sign + ^^^^2a39% โจน \triangleplus Plus Sign In Triangle + ^^^^2a3a% โจบ \triangleminus Minus Sign In Triangle + ^^^^2a3b% โจป \triangletimes Multiplication Sign In Triangle + ^^^^2a3c% โจผ \intprod Interior Product + ^^^^2a3d% โจฝ \intprodr Righthand Interior Product + ^^^^2a3f% โจฟ \amalg Amalgamation Or Coproduct + ^^^^2a40% โฉ€ \capdot Intersection With Dot + ^^^^2a41% โฉ \uminus Union With Minus Sign + ^^^^2a42% โฉ‚ \barcup Union With Overbar + ^^^^2a43% โฉƒ \barcap Intersection With Overbar + ^^^^2a44% โฉ„ \capwedge Intersection With Logical And + ^^^^2a45% โฉ… \cupvee Union With Logical Or + ^^^^2a4a% โฉŠ \twocups Union Beside And Joined With Union + ^^^^2a4b% โฉ‹ \twocaps Intersection Beside And Joined With Intersection + ^^^^2a4c% โฉŒ \closedvarcup Closed Union With Serifs + ^^^^2a4d% โฉ \closedvarcap Closed Intersection With Serifs + ^^^^2a4e% โฉŽ \Sqcap Double Square Intersection + ^^^^2a4f% โฉ \Sqcup Double Square Union + ^^^^2a50% โฉ \closedvarcupsmashprod Closed Union With Serifs And Smash Product + ^^^^2a51% โฉ‘ \wedgeodot Logical And With Dot Above + ^^^^2a52% โฉ’ \veeodot Logical Or With Dot Above + ^^^^2a53% โฉ“ \And Double Logical And + ^^^^2a54% โฉ” \Or Double Logical Or + ^^^^2a55% โฉ• \wedgeonwedge Two Intersecting Logical And + ^^^^2a56% โฉ– \ElOr Two Intersecting Logical Or + ^^^^2a57% โฉ— \bigslopedvee Sloping Large Or + ^^^^2a58% โฉ˜ \bigslopedwedge Sloping Large And + ^^^^2a5a% โฉš \wedgemidvert Logical And With Middle Stem + ^^^^2a5b% โฉ› \veemidvert Logical Or With Middle Stem + ^^^^2a5c% โฉœ \midbarwedge Logical And With Horizontal Dash + ^^^^2a5d% โฉ \midbarvee Logical Or With Horizontal Dash + ^^^^2a5e% โฉž \perspcorrespond Logical And With Double Overbar + ^^^^2a5f% โฉŸ \minhat Logical And With Underbar + ^^^^2a60% โฉ  \wedgedoublebar Logical And With Double Underbar + ^^^^2a61% โฉก \varveebar Small Vee With Underbar + ^^^^2a62% โฉข \doublebarvee Logical Or With Double Overbar + ^^^^2a63% โฉฃ \veedoublebar Logical Or With Double Underbar + ^^^^2a66% โฉฆ \eqdot Equals Sign With Dot Below + ^^^^2a67% โฉง \dotequiv Identical With Dot Above + ^^^^2a6a% โฉช \dotsim Tilde Operator With Dot Above + ^^^^2a6b% โฉซ \simrdots Tilde Operator With Rising Dots + ^^^^2a6c% โฉฌ \simminussim Similar Minus Similar + ^^^^2a6d% โฉญ \congdot Congruent With Dot Above + ^^^^2a6e% โฉฎ \asteq Equals With Asterisk + ^^^^2a6f% โฉฏ \hatapprox Almost Equal To With Circumflex Accent + ^^^^2a70% โฉฐ \approxeqq Approximately Equal Or Equal To + ^^^^2a71% โฉฑ \eqqplus Equals Sign Above Plus Sign + ^^^^2a72% โฉฒ \pluseqq Plus Sign Above Equals Sign + ^^^^2a73% โฉณ \eqqsim Equals Sign Above Tilde Operator + ^^^^2a74% โฉด \Coloneq Double Colon Equal + ^^^^2a75% โฉต \Equal Two Consecutive Equals Signs + ^^^^2a76% โฉถ \eqeqeq Three Consecutive Equals Signs + ^^^^2a77% โฉท \ddotseq Equals Sign With Two Dots Above And Two Dots Below + ^^^^2a78% โฉธ \equivDD Equivalent With Four Dots Above + ^^^^2a79% โฉน \ltcir Less-Than With Circle Inside + ^^^^2a7a% โฉบ \gtcir Greater-Than With Circle Inside + ^^^^2a7b% โฉป \ltquest Less-Than With Question Mark Above + ^^^^2a7c% โฉผ \gtquest Greater-Than With Question Mark Above + ^^^^2a7d% โฉฝ \leqslant Less-Than Or Slanted Equal To + ^^^^2a7d% + ^^^^0338% โฉฝฬธ \nleqslant Less-Than Or Slanted Equal To + Combining Long Solidus Overlay / Non-Spacing Long Slash Overlay + ^^^^2a7e% โฉพ \geqslant Greater-Than Or Slanted Equal To + ^^^^2a7e% + ^^^^0338% โฉพฬธ \ngeqslant Greater-Than Or Slanted Equal To + Combining Long Solidus Overlay / Non-Spacing Long Slash Overlay + ^^^^2a7f% โฉฟ \lesdot Less-Than Or Slanted Equal To With Dot Inside + ^^^^2a80% โช€ \gesdot Greater-Than Or Slanted Equal To With Dot Inside + ^^^^2a81% โช \lesdoto Less-Than Or Slanted Equal To With Dot Above + ^^^^2a82% โช‚ \gesdoto Greater-Than Or Slanted Equal To With Dot Above + ^^^^2a83% โชƒ \lesdotor Less-Than Or Slanted Equal To With Dot Above Right + ^^^^2a84% โช„ \gesdotol Greater-Than Or Slanted Equal To With Dot Above Left + ^^^^2a85% โช… \lessapprox Less-Than Or Approximate + ^^^^2a86% โช† \gtrapprox Greater-Than Or Approximate + ^^^^2a87% โช‡ \lneq Less-Than And Single-Line Not Equal To + ^^^^2a88% โชˆ \gneq Greater-Than And Single-Line Not Equal To + ^^^^2a89% โช‰ \lnapprox Less-Than And Not Approximate + ^^^^2a8a% โชŠ \gnapprox Greater-Than And Not Approximate + ^^^^2a8b% โช‹ \lesseqqgtr Less-Than Above Double-Line Equal Above Greater-Than + ^^^^2a8c% โชŒ \gtreqqless Greater-Than Above Double-Line Equal Above Less-Than + ^^^^2a8d% โช \lsime Less-Than Above Similar Or Equal + ^^^^2a8e% โชŽ \gsime Greater-Than Above Similar Or Equal + ^^^^2a8f% โช \lsimg Less-Than Above Similar Above Greater-Than + ^^^^2a90% โช \gsiml Greater-Than Above Similar Above Less-Than + ^^^^2a91% โช‘ \lgE Less-Than Above Greater-Than Above Double-Line Equal + ^^^^2a92% โช’ \glE Greater-Than Above Less-Than Above Double-Line Equal + ^^^^2a93% โช“ \lesges Less-Than Above Slanted Equal Above Greater-Than Above Slanted Equal + ^^^^2a94% โช” \gesles Greater-Than Above Slanted Equal Above Less-Than Above Slanted Equal + ^^^^2a95% โช• \eqslantless Slanted Equal To Or Less-Than + ^^^^2a96% โช– \eqslantgtr Slanted Equal To Or Greater-Than + ^^^^2a97% โช— \elsdot Slanted Equal To Or Less-Than With Dot Inside + ^^^^2a98% โช˜ \egsdot Slanted Equal To Or Greater-Than With Dot Inside + ^^^^2a99% โช™ \eqqless Double-Line Equal To Or Less-Than + ^^^^2a9a% โชš \eqqgtr Double-Line Equal To Or Greater-Than + ^^^^2a9b% โช› \eqqslantless Double-Line Slanted Equal To Or Less-Than + ^^^^2a9c% โชœ \eqqslantgtr Double-Line Slanted Equal To Or Greater-Than + ^^^^2a9d% โช \simless Similar Or Less-Than + ^^^^2a9e% โชž \simgtr Similar Or Greater-Than + ^^^^2a9f% โชŸ \simlE Similar Above Less-Than Above Equals Sign + ^^^^2aa0% โช  \simgE Similar Above Greater-Than Above Equals Sign + ^^^^2aa1% โชก \NestedLessLess Double Nested Less-Than + ^^^^2aa1% + ^^^^0338% โชกฬธ \NotNestedLessLess Double Nested Less-Than + Combining Long Solidus Overlay / Non-Spacing Long Slash Overlay + ^^^^2aa2% โชข \NestedGreaterGreater Double Nested Greater-Than + ^^^^2aa2% + ^^^^0338% โชขฬธ \NotNestedGreaterGreater Double Nested Greater-Than + Combining Long Solidus Overlay / Non-Spacing Long Slash Overlay + ^^^^2aa3% โชฃ \partialmeetcontraction Double Nested Less-Than With Underbar + ^^^^2aa4% โชค \glj Greater-Than Overlapping Less-Than + ^^^^2aa5% โชฅ \gla Greater-Than Beside Less-Than + ^^^^2aa6% โชฆ \ltcc Less-Than Closed By Curve + ^^^^2aa7% โชง \gtcc Greater-Than Closed By Curve + ^^^^2aa8% โชจ \lescc Less-Than Closed By Curve Above Slanted Equal + ^^^^2aa9% โชฉ \gescc Greater-Than Closed By Curve Above Slanted Equal + ^^^^2aaa% โชช \smt Smaller Than + ^^^^2aab% โชซ \lat Larger Than + ^^^^2aac% โชฌ \smte Smaller Than Or Equal To + ^^^^2aad% โชญ \late Larger Than Or Equal To + ^^^^2aae% โชฎ \bumpeqq Equals Sign With Bumpy Above + ^^^^2aaf% โชฏ \preceq Precedes Above Single-Line Equals Sign + ^^^^2aaf% + ^^^^0338% โชฏฬธ \npreceq Precedes Above Single-Line Equals Sign + Combining Long Solidus Overlay / Non-Spacing Long Slash Overlay + ^^^^2ab0% โชฐ \succeq Succeeds Above Single-Line Equals Sign + ^^^^2ab0% + ^^^^0338% โชฐฬธ \nsucceq Succeeds Above Single-Line Equals Sign + Combining Long Solidus Overlay / Non-Spacing Long Slash Overlay + ^^^^2ab1% โชฑ \precneq Precedes Above Single-Line Not Equal To + ^^^^2ab2% โชฒ \succneq Succeeds Above Single-Line Not Equal To + ^^^^2ab3% โชณ \preceqq Precedes Above Equals Sign + ^^^^2ab4% โชด \succeqq Succeeds Above Equals Sign + ^^^^2ab5% โชต \precneqq Precedes Above Not Equal To + ^^^^2ab6% โชถ \succneqq Succeeds Above Not Equal To + ^^^^2ab7% โชท \precapprox Precedes Above Almost Equal To + ^^^^2ab8% โชธ \succapprox Succeeds Above Almost Equal To + ^^^^2ab9% โชน \precnapprox Precedes Above Not Almost Equal To + ^^^^2aba% โชบ \succnapprox Succeeds Above Not Almost Equal To + ^^^^2abb% โชป \Prec Double Precedes + ^^^^2abc% โชผ \Succ Double Succeeds + ^^^^2abd% โชฝ \subsetdot Subset With Dot + ^^^^2abe% โชพ \supsetdot Superset With Dot + ^^^^2abf% โชฟ \subsetplus Subset With Plus Sign Below + ^^^^2ac0% โซ€ \supsetplus Superset With Plus Sign Below + ^^^^2ac1% โซ \submult Subset With Multiplication Sign Below + ^^^^2ac2% โซ‚ \supmult Superset With Multiplication Sign Below + ^^^^2ac3% โซƒ \subedot Subset Of Or Equal To With Dot Above + ^^^^2ac4% โซ„ \supedot Superset Of Or Equal To With Dot Above + ^^^^2ac5% โซ… \subseteqq Subset Of Above Equals Sign + ^^^^2ac5% + ^^^^0338% โซ…ฬธ \nsubseteqq Subset Of Above Equals Sign + Combining Long Solidus Overlay / Non-Spacing Long Slash Overlay + ^^^^2ac6% โซ† \supseteqq Superset Of Above Equals Sign + ^^^^2ac6% + ^^^^0338% โซ†ฬธ \nsupseteqq Superset Of Above Equals Sign + Combining Long Solidus Overlay / Non-Spacing Long Slash Overlay + ^^^^2ac7% โซ‡ \subsim Subset Of Above Tilde Operator + ^^^^2ac8% โซˆ \supsim Superset Of Above Tilde Operator + ^^^^2ac9% โซ‰ \subsetapprox Subset Of Above Almost Equal To + ^^^^2aca% โซŠ \supsetapprox Superset Of Above Almost Equal To + ^^^^2acb% โซ‹ \subsetneqq Subset Of Above Not Equal To + ^^^^2acc% โซŒ \supsetneqq Superset Of Above Not Equal To + ^^^^2acd% โซ \lsqhook Square Left Open Box Operator + ^^^^2ace% โซŽ \rsqhook Square Right Open Box Operator + ^^^^2acf% โซ \csub Closed Subset + ^^^^2ad0% โซ \csup Closed Superset + ^^^^2ad1% โซ‘ \csube Closed Subset Or Equal To + ^^^^2ad2% โซ’ \csupe Closed Superset Or Equal To + ^^^^2ad3% โซ“ \subsup Subset Above Superset + ^^^^2ad4% โซ” \supsub Superset Above Subset + ^^^^2ad5% โซ• \subsub Subset Above Subset + ^^^^2ad6% โซ– \supsup Superset Above Superset + ^^^^2ad7% โซ— \suphsub Superset Beside Subset + ^^^^2ad8% โซ˜ \supdsub Superset Beside And Joined By Dash With Subset + ^^^^2ad9% โซ™ \forkv Element Of Opening Downwards + ^^^^2adb% โซ› \mlcp Transversal Intersection + ^^^^2adc% โซœ \forks Forking + ^^^^2add% โซ \forksnot Nonforking + ^^^^2ae3% โซฃ \dashV Double Vertical Bar Left Turnstile + ^^^^2ae4% โซค \Dashv Vertical Bar Double Left Turnstile + ^^^^2af4% โซด \interleave Triple Vertical Bar Binary Relation + ^^^^2af6% โซถ \tdcol Triple Colon Operator + ^^^^2af7% โซท \lllnest Triple Nested Less-Than + ^^^^2af8% โซธ \gggnest Triple Nested Greater-Than + ^^^^2af9% โซน \leqqslant Double-Line Slanted Less-Than Or Equal To + ^^^^2afa% โซบ \geqqslant Double-Line Slanted Greater-Than Or Equal To + ^^^^2b05% โฌ… \:arrow_left: Leftwards Black Arrow + ^^^^2b06% โฌ† \:arrow_up: Upwards Black Arrow + ^^^^2b07% โฌ‡ \:arrow_down: Downwards Black Arrow + ^^^^2b12% โฌ’ \squaretopblack Square With Top Half Black + ^^^^2b13% โฌ“ \squarebotblack Square With Bottom Half Black + ^^^^2b14% โฌ” \squareurblack Square With Upper Right Diagonal Half Black + ^^^^2b15% โฌ• \squarellblack Square With Lower Left Diagonal Half Black + ^^^^2b16% โฌ– \diamondleftblack Diamond With Left Half Black + ^^^^2b17% โฌ— \diamondrightblack Diamond With Right Half Black + ^^^^2b18% โฌ˜ \diamondtopblack Diamond With Top Half Black + ^^^^2b19% โฌ™ \diamondbotblack Diamond With Bottom Half Black + ^^^^2b1a% โฌš \dottedsquare Dotted Square + ^^^^2b1b% โฌ› \lgblksquare, \:black_large_square: Black Large Square + ^^^^2b1c% โฌœ \lgwhtsquare, \:white_large_square: White Large Square + ^^^^2b1d% โฌ \vysmblksquare Black Very Small Square + ^^^^2b1e% โฌž \vysmwhtsquare White Very Small Square + ^^^^2b1f% โฌŸ \pentagonblack Black Pentagon + ^^^^2b20% โฌ  \pentagon White Pentagon + ^^^^2b21% โฌก \varhexagon White Hexagon + ^^^^2b22% โฌข \varhexagonblack Black Hexagon + ^^^^2b23% โฌฃ \hexagonblack Horizontal Black Hexagon + ^^^^2b24% โฌค \lgblkcircle Black Large Circle + ^^^^2b25% โฌฅ \mdblkdiamond Black Medium Diamond + ^^^^2b26% โฌฆ \mdwhtdiamond White Medium Diamond + ^^^^2b27% โฌง \mdblklozenge Black Medium Lozenge + ^^^^2b28% โฌจ \mdwhtlozenge White Medium Lozenge + ^^^^2b29% โฌฉ \smblkdiamond Black Small Diamond + ^^^^2b2a% โฌช \smblklozenge Black Small Lozenge + ^^^^2b2b% โฌซ \smwhtlozenge White Small Lozenge + ^^^^2b2c% โฌฌ \blkhorzoval Black Horizontal Ellipse + ^^^^2b2d% โฌญ \whthorzoval White Horizontal Ellipse + ^^^^2b2e% โฌฎ \blkvertoval Black Vertical Ellipse + ^^^^2b2f% โฌฏ \whtvertoval White Vertical Ellipse + ^^^^2b30% โฌฐ \circleonleftarrow Left Arrow With Small Circle + ^^^^2b31% โฌฑ \leftthreearrows Three Leftwards Arrows + ^^^^2b32% โฌฒ \leftarrowonoplus Left Arrow With Circled Plus + ^^^^2b33% โฌณ \longleftsquigarrow Long Leftwards Squiggle Arrow + ^^^^2b34% โฌด \nvtwoheadleftarrow Leftwards Two-Headed Arrow With Vertical Stroke + ^^^^2b35% โฌต \nVtwoheadleftarrow Leftwards Two-Headed Arrow With Double Vertical Stroke + ^^^^2b36% โฌถ \twoheadmapsfrom Leftwards Two-Headed Arrow From Bar + ^^^^2b37% โฌท \twoheadleftdbkarrow Leftwards Two-Headed Triple Dash Arrow + ^^^^2b38% โฌธ \leftdotarrow Leftwards Arrow With Dotted Stem + ^^^^2b39% โฌน \nvleftarrowtail Leftwards Arrow With Tail With Vertical Stroke + ^^^^2b3a% โฌบ \nVleftarrowtail Leftwards Arrow With Tail With Double Vertical Stroke + ^^^^2b3b% โฌป \twoheadleftarrowtail Leftwards Two-Headed Arrow With Tail + ^^^^2b3c% โฌผ \nvtwoheadleftarrowtail Leftwards Two-Headed Arrow With Tail With Vertical Stroke + ^^^^2b3d% โฌฝ \nVtwoheadleftarrowtail Leftwards Two-Headed Arrow With Tail With Double Vertical Stroke + ^^^^2b3e% โฌพ \leftarrowx Leftwards Arrow Through X + ^^^^2b3f% โฌฟ \leftcurvedarrow Wave Arrow Pointing Directly Left + ^^^^2b40% โญ€ \equalleftarrow Equals Sign Above Leftwards Arrow + ^^^^2b41% โญ \bsimilarleftarrow Reverse Tilde Operator Above Leftwards Arrow + ^^^^2b42% โญ‚ \leftarrowbackapprox Leftwards Arrow Above Reverse Almost Equal To + ^^^^2b43% โญƒ \rightarrowgtr Rightwards Arrow Through Greater-Than + ^^^^2b44% โญ„ \rightarrowsupset Rightwards Arrow Through Superset + ^^^^2b45% โญ… \LLeftarrow Leftwards Quadruple Arrow + ^^^^2b46% โญ† \RRightarrow Rightwards Quadruple Arrow + ^^^^2b47% โญ‡ \bsimilarrightarrow Reverse Tilde Operator Above Rightwards Arrow + ^^^^2b48% โญˆ \rightarrowbackapprox Rightwards Arrow Above Reverse Almost Equal To + ^^^^2b49% โญ‰ \similarleftarrow Tilde Operator Above Leftwards Arrow + ^^^^2b4a% โญŠ \leftarrowapprox Leftwards Arrow Above Almost Equal To + ^^^^2b4b% โญ‹ \leftarrowbsimilar Leftwards Arrow Above Reverse Tilde Operator + ^^^^2b4c% โญŒ \rightarrowbsimilar Rightwards Arrow Above Reverse Tilde Operator + ^^^^2b50% โญ \medwhitestar, \:star: White Medium Star + ^^^^2b51% โญ‘ \medblackstar Black Small Star + ^^^^2b52% โญ’ \smwhitestar White Small Star + ^^^^2b53% โญ“ \rightpentagonblack Black Right-Pointing Pentagon + ^^^^2b54% โญ” \rightpentagon White Right-Pointing Pentagon + ^^^^2b55% โญ• \:o: Heavy Large Circle + ^^^^2c7c% โฑผ \_j Latin Subscript Small Letter J + ^^^^2c7d% โฑฝ \^V Modifier Letter Capital V + ^^^^3012% ใ€’ \postalmark Postal Mark + ^^^^3030% ใ€ฐ \:wavy_dash: Wavy Dash + ^^^^303d% ใ€ฝ \:part_alternation_mark: Part Alternation Mark + ^^^^3297% ใŠ— \:congratulations: Circled Ideograph Congratulation + ^^^^3299% ใŠ™ \:secret: Circled Ideograph Secret + % zero-padded 6-digit hex + ^^^^^^01d400% ๐€ \bfA Mathematical Bold Capital A + ^^^^^^01d401% ๐ \bfB Mathematical Bold Capital B + ^^^^^^01d402% ๐‚ \bfC Mathematical Bold Capital C + ^^^^^^01d403% ๐ƒ \bfD Mathematical Bold Capital D + ^^^^^^01d404% ๐„ \bfE Mathematical Bold Capital E + ^^^^^^01d405% ๐… \bfF Mathematical Bold Capital F + ^^^^^^01d406% ๐† \bfG Mathematical Bold Capital G + ^^^^^^01d407% ๐‡ \bfH Mathematical Bold Capital H + ^^^^^^01d408% ๐ˆ \bfI Mathematical Bold Capital I + ^^^^^^01d409% ๐‰ \bfJ Mathematical Bold Capital J + ^^^^^^01d40a% ๐Š \bfK Mathematical Bold Capital K + ^^^^^^01d40b% ๐‹ \bfL Mathematical Bold Capital L + ^^^^^^01d40c% ๐Œ \bfM Mathematical Bold Capital M + ^^^^^^01d40d% ๐ \bfN Mathematical Bold Capital N + ^^^^^^01d40e% ๐Ž \bfO Mathematical Bold Capital O + ^^^^^^01d40f% ๐ \bfP Mathematical Bold Capital P + ^^^^^^01d410% ๐ \bfQ Mathematical Bold Capital Q + ^^^^^^01d411% ๐‘ \bfR Mathematical Bold Capital R + ^^^^^^01d412% ๐’ \bfS Mathematical Bold Capital S + ^^^^^^01d413% ๐“ \bfT Mathematical Bold Capital T + ^^^^^^01d414% ๐” \bfU Mathematical Bold Capital U + ^^^^^^01d415% ๐• \bfV Mathematical Bold Capital V + ^^^^^^01d416% ๐– \bfW Mathematical Bold Capital W + ^^^^^^01d417% ๐— \bfX Mathematical Bold Capital X + ^^^^^^01d418% ๐˜ \bfY Mathematical Bold Capital Y + ^^^^^^01d419% ๐™ \bfZ Mathematical Bold Capital Z + ^^^^^^01d41a% ๐š \bfa Mathematical Bold Small A + ^^^^^^01d41b% ๐› \bfb Mathematical Bold Small B + ^^^^^^01d41c% ๐œ \bfc Mathematical Bold Small C + ^^^^^^01d41d% ๐ \bfd Mathematical Bold Small D + ^^^^^^01d41e% ๐ž \bfe Mathematical Bold Small E + ^^^^^^01d41f% ๐Ÿ \bff Mathematical Bold Small F + ^^^^^^01d420% ๐  \bfg Mathematical Bold Small G + ^^^^^^01d421% ๐ก \bfh Mathematical Bold Small H + ^^^^^^01d422% ๐ข \bfi Mathematical Bold Small I + ^^^^^^01d423% ๐ฃ \bfj Mathematical Bold Small J + ^^^^^^01d424% ๐ค \bfk Mathematical Bold Small K + ^^^^^^01d425% ๐ฅ \bfl Mathematical Bold Small L + ^^^^^^01d426% ๐ฆ \bfm Mathematical Bold Small M + ^^^^^^01d427% ๐ง \bfn Mathematical Bold Small N + ^^^^^^01d428% ๐จ \bfo Mathematical Bold Small O + ^^^^^^01d429% ๐ฉ \bfp Mathematical Bold Small P + ^^^^^^01d42a% ๐ช \bfq Mathematical Bold Small Q + ^^^^^^01d42b% ๐ซ \bfr Mathematical Bold Small R + ^^^^^^01d42c% ๐ฌ \bfs Mathematical Bold Small S + ^^^^^^01d42d% ๐ญ \bft Mathematical Bold Small T + ^^^^^^01d42e% ๐ฎ \bfu Mathematical Bold Small U + ^^^^^^01d42f% ๐ฏ \bfv Mathematical Bold Small V + ^^^^^^01d430% ๐ฐ \bfw Mathematical Bold Small W + ^^^^^^01d431% ๐ฑ \bfx Mathematical Bold Small X + ^^^^^^01d432% ๐ฒ \bfy Mathematical Bold Small Y + ^^^^^^01d433% ๐ณ \bfz Mathematical Bold Small Z + ^^^^^^01d434% ๐ด \itA Mathematical Italic Capital A + ^^^^^^01d435% ๐ต \itB Mathematical Italic Capital B + ^^^^^^01d436% ๐ถ \itC Mathematical Italic Capital C + ^^^^^^01d437% ๐ท \itD Mathematical Italic Capital D + ^^^^^^01d438% ๐ธ \itE Mathematical Italic Capital E + ^^^^^^01d439% ๐น \itF Mathematical Italic Capital F + ^^^^^^01d43a% ๐บ \itG Mathematical Italic Capital G + ^^^^^^01d43b% ๐ป \itH Mathematical Italic Capital H + ^^^^^^01d43c% ๐ผ \itI Mathematical Italic Capital I + ^^^^^^01d43d% ๐ฝ \itJ Mathematical Italic Capital J + ^^^^^^01d43e% ๐พ \itK Mathematical Italic Capital K + ^^^^^^01d43f% ๐ฟ \itL Mathematical Italic Capital L + ^^^^^^01d440% ๐‘€ \itM Mathematical Italic Capital M + ^^^^^^01d441% ๐‘ \itN Mathematical Italic Capital N + ^^^^^^01d442% ๐‘‚ \itO Mathematical Italic Capital O + ^^^^^^01d443% ๐‘ƒ \itP Mathematical Italic Capital P + ^^^^^^01d444% ๐‘„ \itQ Mathematical Italic Capital Q + ^^^^^^01d445% ๐‘… \itR Mathematical Italic Capital R + ^^^^^^01d446% ๐‘† \itS Mathematical Italic Capital S + ^^^^^^01d447% ๐‘‡ \itT Mathematical Italic Capital T + ^^^^^^01d448% ๐‘ˆ \itU Mathematical Italic Capital U + ^^^^^^01d449% ๐‘‰ \itV Mathematical Italic Capital V + ^^^^^^01d44a% ๐‘Š \itW Mathematical Italic Capital W + ^^^^^^01d44b% ๐‘‹ \itX Mathematical Italic Capital X + ^^^^^^01d44c% ๐‘Œ \itY Mathematical Italic Capital Y + ^^^^^^01d44d% ๐‘ \itZ Mathematical Italic Capital Z + ^^^^^^01d44e% ๐‘Ž \ita Mathematical Italic Small A + ^^^^^^01d44f% ๐‘ \itb Mathematical Italic Small B + ^^^^^^01d450% ๐‘ \itc Mathematical Italic Small C + ^^^^^^01d451% ๐‘‘ \itd Mathematical Italic Small D + ^^^^^^01d452% ๐‘’ \ite Mathematical Italic Small E + ^^^^^^01d453% ๐‘“ \itf Mathematical Italic Small F + ^^^^^^01d454% ๐‘” \itg Mathematical Italic Small G + ^^^^^^01d456% ๐‘– \iti Mathematical Italic Small I + ^^^^^^01d457% ๐‘— \itj Mathematical Italic Small J + ^^^^^^01d458% ๐‘˜ \itk Mathematical Italic Small K + ^^^^^^01d459% ๐‘™ \itl Mathematical Italic Small L + ^^^^^^01d45a% ๐‘š \itm Mathematical Italic Small M + ^^^^^^01d45b% ๐‘› \itn Mathematical Italic Small N + ^^^^^^01d45c% ๐‘œ \ito Mathematical Italic Small O + ^^^^^^01d45d% ๐‘ \itp Mathematical Italic Small P + ^^^^^^01d45e% ๐‘ž \itq Mathematical Italic Small Q + ^^^^^^01d45f% ๐‘Ÿ \itr Mathematical Italic Small R + ^^^^^^01d460% ๐‘  \its Mathematical Italic Small S + ^^^^^^01d461% ๐‘ก \itt Mathematical Italic Small T + ^^^^^^01d462% ๐‘ข \itu Mathematical Italic Small U + ^^^^^^01d463% ๐‘ฃ \itv Mathematical Italic Small V + ^^^^^^01d464% ๐‘ค \itw Mathematical Italic Small W + ^^^^^^01d465% ๐‘ฅ \itx Mathematical Italic Small X + ^^^^^^01d466% ๐‘ฆ \ity Mathematical Italic Small Y + ^^^^^^01d467% ๐‘ง \itz Mathematical Italic Small Z + ^^^^^^01d468% ๐‘จ \biA Mathematical Bold Italic Capital A + ^^^^^^01d469% ๐‘ฉ \biB Mathematical Bold Italic Capital B + ^^^^^^01d46a% ๐‘ช \biC Mathematical Bold Italic Capital C + ^^^^^^01d46b% ๐‘ซ \biD Mathematical Bold Italic Capital D + ^^^^^^01d46c% ๐‘ฌ \biE Mathematical Bold Italic Capital E + ^^^^^^01d46d% ๐‘ญ \biF Mathematical Bold Italic Capital F + ^^^^^^01d46e% ๐‘ฎ \biG Mathematical Bold Italic Capital G + ^^^^^^01d46f% ๐‘ฏ \biH Mathematical Bold Italic Capital H + ^^^^^^01d470% ๐‘ฐ \biI Mathematical Bold Italic Capital I + ^^^^^^01d471% ๐‘ฑ \biJ Mathematical Bold Italic Capital J + ^^^^^^01d472% ๐‘ฒ \biK Mathematical Bold Italic Capital K + ^^^^^^01d473% ๐‘ณ \biL Mathematical Bold Italic Capital L + ^^^^^^01d474% ๐‘ด \biM Mathematical Bold Italic Capital M + ^^^^^^01d475% ๐‘ต \biN Mathematical Bold Italic Capital N + ^^^^^^01d476% ๐‘ถ \biO Mathematical Bold Italic Capital O + ^^^^^^01d477% ๐‘ท \biP Mathematical Bold Italic Capital P + ^^^^^^01d478% ๐‘ธ \biQ Mathematical Bold Italic Capital Q + ^^^^^^01d479% ๐‘น \biR Mathematical Bold Italic Capital R + ^^^^^^01d47a% ๐‘บ \biS Mathematical Bold Italic Capital S + ^^^^^^01d47b% ๐‘ป \biT Mathematical Bold Italic Capital T + ^^^^^^01d47c% ๐‘ผ \biU Mathematical Bold Italic Capital U + ^^^^^^01d47d% ๐‘ฝ \biV Mathematical Bold Italic Capital V + ^^^^^^01d47e% ๐‘พ \biW Mathematical Bold Italic Capital W + ^^^^^^01d47f% ๐‘ฟ \biX Mathematical Bold Italic Capital X + ^^^^^^01d480% ๐’€ \biY Mathematical Bold Italic Capital Y + ^^^^^^01d481% ๐’ \biZ Mathematical Bold Italic Capital Z + ^^^^^^01d482% ๐’‚ \bia Mathematical Bold Italic Small A + ^^^^^^01d483% ๐’ƒ \bib Mathematical Bold Italic Small B + ^^^^^^01d484% ๐’„ \bic Mathematical Bold Italic Small C + ^^^^^^01d485% ๐’… \bid Mathematical Bold Italic Small D + ^^^^^^01d486% ๐’† \bie Mathematical Bold Italic Small E + ^^^^^^01d487% ๐’‡ \bif Mathematical Bold Italic Small F + ^^^^^^01d488% ๐’ˆ \big Mathematical Bold Italic Small G + ^^^^^^01d489% ๐’‰ \bih Mathematical Bold Italic Small H + ^^^^^^01d48a% ๐’Š \bii Mathematical Bold Italic Small I + ^^^^^^01d48b% ๐’‹ \bij Mathematical Bold Italic Small J + ^^^^^^01d48c% ๐’Œ \bik Mathematical Bold Italic Small K + ^^^^^^01d48d% ๐’ \bil Mathematical Bold Italic Small L + ^^^^^^01d48e% ๐’Ž \bim Mathematical Bold Italic Small M + ^^^^^^01d48f% ๐’ \bin Mathematical Bold Italic Small N + ^^^^^^01d490% ๐’ \bio Mathematical Bold Italic Small O + ^^^^^^01d491% ๐’‘ \bip Mathematical Bold Italic Small P + ^^^^^^01d492% ๐’’ \biq Mathematical Bold Italic Small Q + ^^^^^^01d493% ๐’“ \bir Mathematical Bold Italic Small R + ^^^^^^01d494% ๐’” \bis Mathematical Bold Italic Small S + ^^^^^^01d495% ๐’• \bit Mathematical Bold Italic Small T + ^^^^^^01d496% ๐’– \biu Mathematical Bold Italic Small U + ^^^^^^01d497% ๐’— \biv Mathematical Bold Italic Small V + ^^^^^^01d498% ๐’˜ \biw Mathematical Bold Italic Small W + ^^^^^^01d499% ๐’™ \bix Mathematical Bold Italic Small X + ^^^^^^01d49a% ๐’š \biy Mathematical Bold Italic Small Y + ^^^^^^01d49b% ๐’› \biz Mathematical Bold Italic Small Z + ^^^^^^01d49c% ๐’œ \scrA Mathematical Script Capital A + ^^^^^^01d49e% ๐’ž \scrC Mathematical Script Capital C + ^^^^^^01d49f% ๐’Ÿ \scrD Mathematical Script Capital D + ^^^^^^01d4a2% ๐’ข \scrG Mathematical Script Capital G + ^^^^^^01d4a5% ๐’ฅ \scrJ Mathematical Script Capital J + ^^^^^^01d4a6% ๐’ฆ \scrK Mathematical Script Capital K + ^^^^^^01d4a9% ๐’ฉ \scrN Mathematical Script Capital N + ^^^^^^01d4aa% ๐’ช \scrO Mathematical Script Capital O + ^^^^^^01d4ab% ๐’ซ \scrP Mathematical Script Capital P + ^^^^^^01d4ac% ๐’ฌ \scrQ Mathematical Script Capital Q + ^^^^^^01d4ae% ๐’ฎ \scrS Mathematical Script Capital S + ^^^^^^01d4af% ๐’ฏ \scrT Mathematical Script Capital T + ^^^^^^01d4b0% ๐’ฐ \scrU Mathematical Script Capital U + ^^^^^^01d4b1% ๐’ฑ \scrV Mathematical Script Capital V + ^^^^^^01d4b2% ๐’ฒ \scrW Mathematical Script Capital W + ^^^^^^01d4b3% ๐’ณ \scrX Mathematical Script Capital X + ^^^^^^01d4b4% ๐’ด \scrY Mathematical Script Capital Y + ^^^^^^01d4b5% ๐’ต \scrZ Mathematical Script Capital Z + ^^^^^^01d4b6% ๐’ถ \scra Mathematical Script Small A + ^^^^^^01d4b7% ๐’ท \scrb Mathematical Script Small B + ^^^^^^01d4b8% ๐’ธ \scrc Mathematical Script Small C + ^^^^^^01d4b9% ๐’น \scrd Mathematical Script Small D + ^^^^^^01d4bb% ๐’ป \scrf Mathematical Script Small F + ^^^^^^01d4bd% ๐’ฝ \scrh Mathematical Script Small H + ^^^^^^01d4be% ๐’พ \scri Mathematical Script Small I + ^^^^^^01d4bf% ๐’ฟ \scrj Mathematical Script Small J + ^^^^^^01d4c0% ๐“€ \scrk Mathematical Script Small K + ^^^^^^01d4c1% ๐“ \scrl Mathematical Script Small L + ^^^^^^01d4c2% ๐“‚ \scrm Mathematical Script Small M + ^^^^^^01d4c3% ๐“ƒ \scrn Mathematical Script Small N + ^^^^^^01d4c5% ๐“… \scrp Mathematical Script Small P + ^^^^^^01d4c6% ๐“† \scrq Mathematical Script Small Q + ^^^^^^01d4c7% ๐“‡ \scrr Mathematical Script Small R + ^^^^^^01d4c8% ๐“ˆ \scrs Mathematical Script Small S + ^^^^^^01d4c9% ๐“‰ \scrt Mathematical Script Small T + ^^^^^^01d4ca% ๐“Š \scru Mathematical Script Small U + ^^^^^^01d4cb% ๐“‹ \scrv Mathematical Script Small V + ^^^^^^01d4cc% ๐“Œ \scrw Mathematical Script Small W + ^^^^^^01d4cd% ๐“ \scrx Mathematical Script Small X + ^^^^^^01d4ce% ๐“Ž \scry Mathematical Script Small Y + ^^^^^^01d4cf% ๐“ \scrz Mathematical Script Small Z + ^^^^^^01d4d0% ๐“ \bscrA Mathematical Bold Script Capital A + ^^^^^^01d4d1% ๐“‘ \bscrB Mathematical Bold Script Capital B + ^^^^^^01d4d2% ๐“’ \bscrC Mathematical Bold Script Capital C + ^^^^^^01d4d3% ๐““ \bscrD Mathematical Bold Script Capital D + ^^^^^^01d4d4% ๐“” \bscrE Mathematical Bold Script Capital E + ^^^^^^01d4d5% ๐“• \bscrF Mathematical Bold Script Capital F + ^^^^^^01d4d6% ๐“– \bscrG Mathematical Bold Script Capital G + ^^^^^^01d4d7% ๐“— \bscrH Mathematical Bold Script Capital H + ^^^^^^01d4d8% ๐“˜ \bscrI Mathematical Bold Script Capital I + ^^^^^^01d4d9% ๐“™ \bscrJ Mathematical Bold Script Capital J + ^^^^^^01d4da% ๐“š \bscrK Mathematical Bold Script Capital K + ^^^^^^01d4db% ๐“› \bscrL Mathematical Bold Script Capital L + ^^^^^^01d4dc% ๐“œ \bscrM Mathematical Bold Script Capital M + ^^^^^^01d4dd% ๐“ \bscrN Mathematical Bold Script Capital N + ^^^^^^01d4de% ๐“ž \bscrO Mathematical Bold Script Capital O + ^^^^^^01d4df% ๐“Ÿ \bscrP Mathematical Bold Script Capital P + ^^^^^^01d4e0% ๐“  \bscrQ Mathematical Bold Script Capital Q + ^^^^^^01d4e1% ๐“ก \bscrR Mathematical Bold Script Capital R + ^^^^^^01d4e2% ๐“ข \bscrS Mathematical Bold Script Capital S + ^^^^^^01d4e3% ๐“ฃ \bscrT Mathematical Bold Script Capital T + ^^^^^^01d4e4% ๐“ค \bscrU Mathematical Bold Script Capital U + ^^^^^^01d4e5% ๐“ฅ \bscrV Mathematical Bold Script Capital V + ^^^^^^01d4e6% ๐“ฆ \bscrW Mathematical Bold Script Capital W + ^^^^^^01d4e7% ๐“ง \bscrX Mathematical Bold Script Capital X + ^^^^^^01d4e8% ๐“จ \bscrY Mathematical Bold Script Capital Y + ^^^^^^01d4e9% ๐“ฉ \bscrZ Mathematical Bold Script Capital Z + ^^^^^^01d4ea% ๐“ช \bscra Mathematical Bold Script Small A + ^^^^^^01d4eb% ๐“ซ \bscrb Mathematical Bold Script Small B + ^^^^^^01d4ec% ๐“ฌ \bscrc Mathematical Bold Script Small C + ^^^^^^01d4ed% ๐“ญ \bscrd Mathematical Bold Script Small D + ^^^^^^01d4ee% ๐“ฎ \bscre Mathematical Bold Script Small E + ^^^^^^01d4ef% ๐“ฏ \bscrf Mathematical Bold Script Small F + ^^^^^^01d4f0% ๐“ฐ \bscrg Mathematical Bold Script Small G + ^^^^^^01d4f1% ๐“ฑ \bscrh Mathematical Bold Script Small H + ^^^^^^01d4f2% ๐“ฒ \bscri Mathematical Bold Script Small I + ^^^^^^01d4f3% ๐“ณ \bscrj Mathematical Bold Script Small J + ^^^^^^01d4f4% ๐“ด \bscrk Mathematical Bold Script Small K + ^^^^^^01d4f5% ๐“ต \bscrl Mathematical Bold Script Small L + ^^^^^^01d4f6% ๐“ถ \bscrm Mathematical Bold Script Small M + ^^^^^^01d4f7% ๐“ท \bscrn Mathematical Bold Script Small N + ^^^^^^01d4f8% ๐“ธ \bscro Mathematical Bold Script Small O + ^^^^^^01d4f9% ๐“น \bscrp Mathematical Bold Script Small P + ^^^^^^01d4fa% ๐“บ \bscrq Mathematical Bold Script Small Q + ^^^^^^01d4fb% ๐“ป \bscrr Mathematical Bold Script Small R + ^^^^^^01d4fc% ๐“ผ \bscrs Mathematical Bold Script Small S + ^^^^^^01d4fd% ๐“ฝ \bscrt Mathematical Bold Script Small T + ^^^^^^01d4fe% ๐“พ \bscru Mathematical Bold Script Small U + ^^^^^^01d4ff% ๐“ฟ \bscrv Mathematical Bold Script Small V + ^^^^^^01d500% ๐”€ \bscrw Mathematical Bold Script Small W + ^^^^^^01d501% ๐” \bscrx Mathematical Bold Script Small X + ^^^^^^01d502% ๐”‚ \bscry Mathematical Bold Script Small Y + ^^^^^^01d503% ๐”ƒ \bscrz Mathematical Bold Script Small Z + ^^^^^^01d504% ๐”„ \frakA Mathematical Fraktur Capital A + ^^^^^^01d505% ๐”… \frakB Mathematical Fraktur Capital B + ^^^^^^01d507% ๐”‡ \frakD Mathematical Fraktur Capital D + ^^^^^^01d508% ๐”ˆ \frakE Mathematical Fraktur Capital E + ^^^^^^01d509% ๐”‰ \frakF Mathematical Fraktur Capital F + ^^^^^^01d50a% ๐”Š \frakG Mathematical Fraktur Capital G + ^^^^^^01d50d% ๐” \frakJ Mathematical Fraktur Capital J + ^^^^^^01d50e% ๐”Ž \frakK Mathematical Fraktur Capital K + ^^^^^^01d50f% ๐” \frakL Mathematical Fraktur Capital L + ^^^^^^01d510% ๐” \frakM Mathematical Fraktur Capital M + ^^^^^^01d511% ๐”‘ \frakN Mathematical Fraktur Capital N + ^^^^^^01d512% ๐”’ \frakO Mathematical Fraktur Capital O + ^^^^^^01d513% ๐”“ \frakP Mathematical Fraktur Capital P + ^^^^^^01d514% ๐”” \frakQ Mathematical Fraktur Capital Q + ^^^^^^01d516% ๐”– \frakS Mathematical Fraktur Capital S + ^^^^^^01d517% ๐”— \frakT Mathematical Fraktur Capital T + ^^^^^^01d518% ๐”˜ \frakU Mathematical Fraktur Capital U + ^^^^^^01d519% ๐”™ \frakV Mathematical Fraktur Capital V + ^^^^^^01d51a% ๐”š \frakW Mathematical Fraktur Capital W + ^^^^^^01d51b% ๐”› \frakX Mathematical Fraktur Capital X + ^^^^^^01d51c% ๐”œ \frakY Mathematical Fraktur Capital Y + ^^^^^^01d51e% ๐”ž \fraka Mathematical Fraktur Small A + ^^^^^^01d51f% ๐”Ÿ \frakb Mathematical Fraktur Small B + ^^^^^^01d520% ๐”  \frakc Mathematical Fraktur Small C + ^^^^^^01d521% ๐”ก \frakd Mathematical Fraktur Small D + ^^^^^^01d522% ๐”ข \frake Mathematical Fraktur Small E + ^^^^^^01d523% ๐”ฃ \frakf Mathematical Fraktur Small F + ^^^^^^01d524% ๐”ค \frakg Mathematical Fraktur Small G + ^^^^^^01d525% ๐”ฅ \frakh Mathematical Fraktur Small H + ^^^^^^01d526% ๐”ฆ \fraki Mathematical Fraktur Small I + ^^^^^^01d527% ๐”ง \frakj Mathematical Fraktur Small J + ^^^^^^01d528% ๐”จ \frakk Mathematical Fraktur Small K + ^^^^^^01d529% ๐”ฉ \frakl Mathematical Fraktur Small L + ^^^^^^01d52a% ๐”ช \frakm Mathematical Fraktur Small M + ^^^^^^01d52b% ๐”ซ \frakn Mathematical Fraktur Small N + ^^^^^^01d52c% ๐”ฌ \frako Mathematical Fraktur Small O + ^^^^^^01d52d% ๐”ญ \frakp Mathematical Fraktur Small P + ^^^^^^01d52e% ๐”ฎ \frakq Mathematical Fraktur Small Q + ^^^^^^01d52f% ๐”ฏ \frakr Mathematical Fraktur Small R + ^^^^^^01d530% ๐”ฐ \fraks Mathematical Fraktur Small S + ^^^^^^01d531% ๐”ฑ \frakt Mathematical Fraktur Small T + ^^^^^^01d532% ๐”ฒ \fraku Mathematical Fraktur Small U + ^^^^^^01d533% ๐”ณ \frakv Mathematical Fraktur Small V + ^^^^^^01d534% ๐”ด \frakw Mathematical Fraktur Small W + ^^^^^^01d535% ๐”ต \frakx Mathematical Fraktur Small X + ^^^^^^01d536% ๐”ถ \fraky Mathematical Fraktur Small Y + ^^^^^^01d537% ๐”ท \frakz Mathematical Fraktur Small Z + ^^^^^^01d538% ๐”ธ \bbA Mathematical Double-Struck Capital A + ^^^^^^01d539% ๐”น \bbB Mathematical Double-Struck Capital B + ^^^^^^01d53b% ๐”ป \bbD Mathematical Double-Struck Capital D + ^^^^^^01d53c% ๐”ผ \bbE Mathematical Double-Struck Capital E + ^^^^^^01d53d% ๐”ฝ \bbF Mathematical Double-Struck Capital F + ^^^^^^01d53e% ๐”พ \bbG Mathematical Double-Struck Capital G + ^^^^^^01d540% ๐•€ \bbI Mathematical Double-Struck Capital I + ^^^^^^01d541% ๐• \bbJ Mathematical Double-Struck Capital J + ^^^^^^01d542% ๐•‚ \bbK Mathematical Double-Struck Capital K + ^^^^^^01d543% ๐•ƒ \bbL Mathematical Double-Struck Capital L + ^^^^^^01d544% ๐•„ \bbM Mathematical Double-Struck Capital M + ^^^^^^01d546% ๐•† \bbO Mathematical Double-Struck Capital O + ^^^^^^01d54a% ๐•Š \bbS Mathematical Double-Struck Capital S + ^^^^^^01d54b% ๐•‹ \bbT Mathematical Double-Struck Capital T + ^^^^^^01d54c% ๐•Œ \bbU Mathematical Double-Struck Capital U + ^^^^^^01d54d% ๐• \bbV Mathematical Double-Struck Capital V + ^^^^^^01d54e% ๐•Ž \bbW Mathematical Double-Struck Capital W + ^^^^^^01d54f% ๐• \bbX Mathematical Double-Struck Capital X + ^^^^^^01d550% ๐• \bbY Mathematical Double-Struck Capital Y + ^^^^^^01d552% ๐•’ \bba Mathematical Double-Struck Small A + ^^^^^^01d553% ๐•“ \bbb Mathematical Double-Struck Small B + ^^^^^^01d554% ๐•” \bbc Mathematical Double-Struck Small C + ^^^^^^01d555% ๐•• \bbd Mathematical Double-Struck Small D + ^^^^^^01d556% ๐•– \bbe Mathematical Double-Struck Small E + ^^^^^^01d557% ๐•— \bbf Mathematical Double-Struck Small F + ^^^^^^01d558% ๐•˜ \bbg Mathematical Double-Struck Small G + ^^^^^^01d559% ๐•™ \bbh Mathematical Double-Struck Small H + ^^^^^^01d55a% ๐•š \bbi Mathematical Double-Struck Small I + ^^^^^^01d55b% ๐•› \bbj Mathematical Double-Struck Small J + ^^^^^^01d55c% ๐•œ \bbk Mathematical Double-Struck Small K + ^^^^^^01d55d% ๐• \bbl Mathematical Double-Struck Small L + ^^^^^^01d55e% ๐•ž \bbm Mathematical Double-Struck Small M + ^^^^^^01d55f% ๐•Ÿ \bbn Mathematical Double-Struck Small N + ^^^^^^01d560% ๐•  \bbo Mathematical Double-Struck Small O + ^^^^^^01d561% ๐•ก \bbp Mathematical Double-Struck Small P + ^^^^^^01d562% ๐•ข \bbq Mathematical Double-Struck Small Q + ^^^^^^01d563% ๐•ฃ \bbr Mathematical Double-Struck Small R + ^^^^^^01d564% ๐•ค \bbs Mathematical Double-Struck Small S + ^^^^^^01d565% ๐•ฅ \bbt Mathematical Double-Struck Small T + ^^^^^^01d566% ๐•ฆ \bbu Mathematical Double-Struck Small U + ^^^^^^01d567% ๐•ง \bbv Mathematical Double-Struck Small V + ^^^^^^01d568% ๐•จ \bbw Mathematical Double-Struck Small W + ^^^^^^01d569% ๐•ฉ \bbx Mathematical Double-Struck Small X + ^^^^^^01d56a% ๐•ช \bby Mathematical Double-Struck Small Y + ^^^^^^01d56b% ๐•ซ \bbz Mathematical Double-Struck Small Z + ^^^^^^01d56c% ๐•ฌ \bfrakA Mathematical Bold Fraktur Capital A + ^^^^^^01d56d% ๐•ญ \bfrakB Mathematical Bold Fraktur Capital B + ^^^^^^01d56e% ๐•ฎ \bfrakC Mathematical Bold Fraktur Capital C + ^^^^^^01d56f% ๐•ฏ \bfrakD Mathematical Bold Fraktur Capital D + ^^^^^^01d570% ๐•ฐ \bfrakE Mathematical Bold Fraktur Capital E + ^^^^^^01d571% ๐•ฑ \bfrakF Mathematical Bold Fraktur Capital F + ^^^^^^01d572% ๐•ฒ \bfrakG Mathematical Bold Fraktur Capital G + ^^^^^^01d573% ๐•ณ \bfrakH Mathematical Bold Fraktur Capital H + ^^^^^^01d574% ๐•ด \bfrakI Mathematical Bold Fraktur Capital I + ^^^^^^01d575% ๐•ต \bfrakJ Mathematical Bold Fraktur Capital J + ^^^^^^01d576% ๐•ถ \bfrakK Mathematical Bold Fraktur Capital K + ^^^^^^01d577% ๐•ท \bfrakL Mathematical Bold Fraktur Capital L + ^^^^^^01d578% ๐•ธ \bfrakM Mathematical Bold Fraktur Capital M + ^^^^^^01d579% ๐•น \bfrakN Mathematical Bold Fraktur Capital N + ^^^^^^01d57a% ๐•บ \bfrakO Mathematical Bold Fraktur Capital O + ^^^^^^01d57b% ๐•ป \bfrakP Mathematical Bold Fraktur Capital P + ^^^^^^01d57c% ๐•ผ \bfrakQ Mathematical Bold Fraktur Capital Q + ^^^^^^01d57d% ๐•ฝ \bfrakR Mathematical Bold Fraktur Capital R + ^^^^^^01d57e% ๐•พ \bfrakS Mathematical Bold Fraktur Capital S + ^^^^^^01d57f% ๐•ฟ \bfrakT Mathematical Bold Fraktur Capital T + ^^^^^^01d580% ๐–€ \bfrakU Mathematical Bold Fraktur Capital U + ^^^^^^01d581% ๐– \bfrakV Mathematical Bold Fraktur Capital V + ^^^^^^01d582% ๐–‚ \bfrakW Mathematical Bold Fraktur Capital W + ^^^^^^01d583% ๐–ƒ \bfrakX Mathematical Bold Fraktur Capital X + ^^^^^^01d584% ๐–„ \bfrakY Mathematical Bold Fraktur Capital Y + ^^^^^^01d585% ๐–… \bfrakZ Mathematical Bold Fraktur Capital Z + ^^^^^^01d586% ๐–† \bfraka Mathematical Bold Fraktur Small A + ^^^^^^01d587% ๐–‡ \bfrakb Mathematical Bold Fraktur Small B + ^^^^^^01d588% ๐–ˆ \bfrakc Mathematical Bold Fraktur Small C + ^^^^^^01d589% ๐–‰ \bfrakd Mathematical Bold Fraktur Small D + ^^^^^^01d58a% ๐–Š \bfrake Mathematical Bold Fraktur Small E + ^^^^^^01d58b% ๐–‹ \bfrakf Mathematical Bold Fraktur Small F + ^^^^^^01d58c% ๐–Œ \bfrakg Mathematical Bold Fraktur Small G + ^^^^^^01d58d% ๐– \bfrakh Mathematical Bold Fraktur Small H + ^^^^^^01d58e% ๐–Ž \bfraki Mathematical Bold Fraktur Small I + ^^^^^^01d58f% ๐– \bfrakj Mathematical Bold Fraktur Small J + ^^^^^^01d590% ๐– \bfrakk Mathematical Bold Fraktur Small K + ^^^^^^01d591% ๐–‘ \bfrakl Mathematical Bold Fraktur Small L + ^^^^^^01d592% ๐–’ \bfrakm Mathematical Bold Fraktur Small M + ^^^^^^01d593% ๐–“ \bfrakn Mathematical Bold Fraktur Small N + ^^^^^^01d594% ๐–” \bfrako Mathematical Bold Fraktur Small O + ^^^^^^01d595% ๐–• \bfrakp Mathematical Bold Fraktur Small P + ^^^^^^01d596% ๐–– \bfrakq Mathematical Bold Fraktur Small Q + ^^^^^^01d597% ๐–— \bfrakr Mathematical Bold Fraktur Small R + ^^^^^^01d598% ๐–˜ \bfraks Mathematical Bold Fraktur Small S + ^^^^^^01d599% ๐–™ \bfrakt Mathematical Bold Fraktur Small T + ^^^^^^01d59a% ๐–š \bfraku Mathematical Bold Fraktur Small U + ^^^^^^01d59b% ๐–› \bfrakv Mathematical Bold Fraktur Small V + ^^^^^^01d59c% ๐–œ \bfrakw Mathematical Bold Fraktur Small W + ^^^^^^01d59d% ๐– \bfrakx Mathematical Bold Fraktur Small X + ^^^^^^01d59e% ๐–ž \bfraky Mathematical Bold Fraktur Small Y + ^^^^^^01d59f% ๐–Ÿ \bfrakz Mathematical Bold Fraktur Small Z + ^^^^^^01d5a0% ๐–  \sansA Mathematical Sans-Serif Capital A + ^^^^^^01d5a1% ๐–ก \sansB Mathematical Sans-Serif Capital B + ^^^^^^01d5a2% ๐–ข \sansC Mathematical Sans-Serif Capital C + ^^^^^^01d5a3% ๐–ฃ \sansD Mathematical Sans-Serif Capital D + ^^^^^^01d5a4% ๐–ค \sansE Mathematical Sans-Serif Capital E + ^^^^^^01d5a5% ๐–ฅ \sansF Mathematical Sans-Serif Capital F + ^^^^^^01d5a6% ๐–ฆ \sansG Mathematical Sans-Serif Capital G + ^^^^^^01d5a7% ๐–ง \sansH Mathematical Sans-Serif Capital H + ^^^^^^01d5a8% ๐–จ \sansI Mathematical Sans-Serif Capital I + ^^^^^^01d5a9% ๐–ฉ \sansJ Mathematical Sans-Serif Capital J + ^^^^^^01d5aa% ๐–ช \sansK Mathematical Sans-Serif Capital K + ^^^^^^01d5ab% ๐–ซ \sansL Mathematical Sans-Serif Capital L + ^^^^^^01d5ac% ๐–ฌ \sansM Mathematical Sans-Serif Capital M + ^^^^^^01d5ad% ๐–ญ \sansN Mathematical Sans-Serif Capital N + ^^^^^^01d5ae% ๐–ฎ \sansO Mathematical Sans-Serif Capital O + ^^^^^^01d5af% ๐–ฏ \sansP Mathematical Sans-Serif Capital P + ^^^^^^01d5b0% ๐–ฐ \sansQ Mathematical Sans-Serif Capital Q + ^^^^^^01d5b1% ๐–ฑ \sansR Mathematical Sans-Serif Capital R + ^^^^^^01d5b2% ๐–ฒ \sansS Mathematical Sans-Serif Capital S + ^^^^^^01d5b3% ๐–ณ \sansT Mathematical Sans-Serif Capital T + ^^^^^^01d5b4% ๐–ด \sansU Mathematical Sans-Serif Capital U + ^^^^^^01d5b5% ๐–ต \sansV Mathematical Sans-Serif Capital V + ^^^^^^01d5b6% ๐–ถ \sansW Mathematical Sans-Serif Capital W + ^^^^^^01d5b7% ๐–ท \sansX Mathematical Sans-Serif Capital X + ^^^^^^01d5b8% ๐–ธ \sansY Mathematical Sans-Serif Capital Y + ^^^^^^01d5b9% ๐–น \sansZ Mathematical Sans-Serif Capital Z + ^^^^^^01d5ba% ๐–บ \sansa Mathematical Sans-Serif Small A + ^^^^^^01d5bb% ๐–ป \sansb Mathematical Sans-Serif Small B + ^^^^^^01d5bc% ๐–ผ \sansc Mathematical Sans-Serif Small C + ^^^^^^01d5bd% ๐–ฝ \sansd Mathematical Sans-Serif Small D + ^^^^^^01d5be% ๐–พ \sanse Mathematical Sans-Serif Small E + ^^^^^^01d5bf% ๐–ฟ \sansf Mathematical Sans-Serif Small F + ^^^^^^01d5c0% ๐—€ \sansg Mathematical Sans-Serif Small G + ^^^^^^01d5c1% ๐— \sansh Mathematical Sans-Serif Small H + ^^^^^^01d5c2% ๐—‚ \sansi Mathematical Sans-Serif Small I + ^^^^^^01d5c3% ๐—ƒ \sansj Mathematical Sans-Serif Small J + ^^^^^^01d5c4% ๐—„ \sansk Mathematical Sans-Serif Small K + ^^^^^^01d5c5% ๐—… \sansl Mathematical Sans-Serif Small L + ^^^^^^01d5c6% ๐—† \sansm Mathematical Sans-Serif Small M + ^^^^^^01d5c7% ๐—‡ \sansn Mathematical Sans-Serif Small N + ^^^^^^01d5c8% ๐—ˆ \sanso Mathematical Sans-Serif Small O + ^^^^^^01d5c9% ๐—‰ \sansp Mathematical Sans-Serif Small P + ^^^^^^01d5ca% ๐—Š \sansq Mathematical Sans-Serif Small Q + ^^^^^^01d5cb% ๐—‹ \sansr Mathematical Sans-Serif Small R + ^^^^^^01d5cc% ๐—Œ \sanss Mathematical Sans-Serif Small S + ^^^^^^01d5cd% ๐— \sanst Mathematical Sans-Serif Small T + ^^^^^^01d5ce% ๐—Ž \sansu Mathematical Sans-Serif Small U + ^^^^^^01d5cf% ๐— \sansv Mathematical Sans-Serif Small V + ^^^^^^01d5d0% ๐— \sansw Mathematical Sans-Serif Small W + ^^^^^^01d5d1% ๐—‘ \sansx Mathematical Sans-Serif Small X + ^^^^^^01d5d2% ๐—’ \sansy Mathematical Sans-Serif Small Y + ^^^^^^01d5d3% ๐—“ \sansz Mathematical Sans-Serif Small Z + ^^^^^^01d5d4% ๐—” \bsansA Mathematical Sans-Serif Bold Capital A + ^^^^^^01d5d5% ๐—• \bsansB Mathematical Sans-Serif Bold Capital B + ^^^^^^01d5d6% ๐—– \bsansC Mathematical Sans-Serif Bold Capital C + ^^^^^^01d5d7% ๐—— \bsansD Mathematical Sans-Serif Bold Capital D + ^^^^^^01d5d8% ๐—˜ \bsansE Mathematical Sans-Serif Bold Capital E + ^^^^^^01d5d9% ๐—™ \bsansF Mathematical Sans-Serif Bold Capital F + ^^^^^^01d5da% ๐—š \bsansG Mathematical Sans-Serif Bold Capital G + ^^^^^^01d5db% ๐—› \bsansH Mathematical Sans-Serif Bold Capital H + ^^^^^^01d5dc% ๐—œ \bsansI Mathematical Sans-Serif Bold Capital I + ^^^^^^01d5dd% ๐— \bsansJ Mathematical Sans-Serif Bold Capital J + ^^^^^^01d5de% ๐—ž \bsansK Mathematical Sans-Serif Bold Capital K + ^^^^^^01d5df% ๐—Ÿ \bsansL Mathematical Sans-Serif Bold Capital L + ^^^^^^01d5e0% ๐—  \bsansM Mathematical Sans-Serif Bold Capital M + ^^^^^^01d5e1% ๐—ก \bsansN Mathematical Sans-Serif Bold Capital N + ^^^^^^01d5e2% ๐—ข \bsansO Mathematical Sans-Serif Bold Capital O + ^^^^^^01d5e3% ๐—ฃ \bsansP Mathematical Sans-Serif Bold Capital P + ^^^^^^01d5e4% ๐—ค \bsansQ Mathematical Sans-Serif Bold Capital Q + ^^^^^^01d5e5% ๐—ฅ \bsansR Mathematical Sans-Serif Bold Capital R + ^^^^^^01d5e6% ๐—ฆ \bsansS Mathematical Sans-Serif Bold Capital S + ^^^^^^01d5e7% ๐—ง \bsansT Mathematical Sans-Serif Bold Capital T + ^^^^^^01d5e8% ๐—จ \bsansU Mathematical Sans-Serif Bold Capital U + ^^^^^^01d5e9% ๐—ฉ \bsansV Mathematical Sans-Serif Bold Capital V + ^^^^^^01d5ea% ๐—ช \bsansW Mathematical Sans-Serif Bold Capital W + ^^^^^^01d5eb% ๐—ซ \bsansX Mathematical Sans-Serif Bold Capital X + ^^^^^^01d5ec% ๐—ฌ \bsansY Mathematical Sans-Serif Bold Capital Y + ^^^^^^01d5ed% ๐—ญ \bsansZ Mathematical Sans-Serif Bold Capital Z + ^^^^^^01d5ee% ๐—ฎ \bsansa Mathematical Sans-Serif Bold Small A + ^^^^^^01d5ef% ๐—ฏ \bsansb Mathematical Sans-Serif Bold Small B + ^^^^^^01d5f0% ๐—ฐ \bsansc Mathematical Sans-Serif Bold Small C + ^^^^^^01d5f1% ๐—ฑ \bsansd Mathematical Sans-Serif Bold Small D + ^^^^^^01d5f2% ๐—ฒ \bsanse Mathematical Sans-Serif Bold Small E + ^^^^^^01d5f3% ๐—ณ \bsansf Mathematical Sans-Serif Bold Small F + ^^^^^^01d5f4% ๐—ด \bsansg Mathematical Sans-Serif Bold Small G + ^^^^^^01d5f5% ๐—ต \bsansh Mathematical Sans-Serif Bold Small H + ^^^^^^01d5f6% ๐—ถ \bsansi Mathematical Sans-Serif Bold Small I + ^^^^^^01d5f7% ๐—ท \bsansj Mathematical Sans-Serif Bold Small J + ^^^^^^01d5f8% ๐—ธ \bsansk Mathematical Sans-Serif Bold Small K + ^^^^^^01d5f9% ๐—น \bsansl Mathematical Sans-Serif Bold Small L + ^^^^^^01d5fa% ๐—บ \bsansm Mathematical Sans-Serif Bold Small M + ^^^^^^01d5fb% ๐—ป \bsansn Mathematical Sans-Serif Bold Small N + ^^^^^^01d5fc% ๐—ผ \bsanso Mathematical Sans-Serif Bold Small O + ^^^^^^01d5fd% ๐—ฝ \bsansp Mathematical Sans-Serif Bold Small P + ^^^^^^01d5fe% ๐—พ \bsansq Mathematical Sans-Serif Bold Small Q + ^^^^^^01d5ff% ๐—ฟ \bsansr Mathematical Sans-Serif Bold Small R + ^^^^^^01d600% ๐˜€ \bsanss Mathematical Sans-Serif Bold Small S + ^^^^^^01d601% ๐˜ \bsanst Mathematical Sans-Serif Bold Small T + ^^^^^^01d602% ๐˜‚ \bsansu Mathematical Sans-Serif Bold Small U + ^^^^^^01d603% ๐˜ƒ \bsansv Mathematical Sans-Serif Bold Small V + ^^^^^^01d604% ๐˜„ \bsansw Mathematical Sans-Serif Bold Small W + ^^^^^^01d605% ๐˜… \bsansx Mathematical Sans-Serif Bold Small X + ^^^^^^01d606% ๐˜† \bsansy Mathematical Sans-Serif Bold Small Y + ^^^^^^01d607% ๐˜‡ \bsansz Mathematical Sans-Serif Bold Small Z + ^^^^^^01d608% ๐˜ˆ \isansA Mathematical Sans-Serif Italic Capital A + ^^^^^^01d609% ๐˜‰ \isansB Mathematical Sans-Serif Italic Capital B + ^^^^^^01d60a% ๐˜Š \isansC Mathematical Sans-Serif Italic Capital C + ^^^^^^01d60b% ๐˜‹ \isansD Mathematical Sans-Serif Italic Capital D + ^^^^^^01d60c% ๐˜Œ \isansE Mathematical Sans-Serif Italic Capital E + ^^^^^^01d60d% ๐˜ \isansF Mathematical Sans-Serif Italic Capital F + ^^^^^^01d60e% ๐˜Ž \isansG Mathematical Sans-Serif Italic Capital G + ^^^^^^01d60f% ๐˜ \isansH Mathematical Sans-Serif Italic Capital H + ^^^^^^01d610% ๐˜ \isansI Mathematical Sans-Serif Italic Capital I + ^^^^^^01d611% ๐˜‘ \isansJ Mathematical Sans-Serif Italic Capital J + ^^^^^^01d612% ๐˜’ \isansK Mathematical Sans-Serif Italic Capital K + ^^^^^^01d613% ๐˜“ \isansL Mathematical Sans-Serif Italic Capital L + ^^^^^^01d614% ๐˜” \isansM Mathematical Sans-Serif Italic Capital M + ^^^^^^01d615% ๐˜• \isansN Mathematical Sans-Serif Italic Capital N + ^^^^^^01d616% ๐˜– \isansO Mathematical Sans-Serif Italic Capital O + ^^^^^^01d617% ๐˜— \isansP Mathematical Sans-Serif Italic Capital P + ^^^^^^01d618% ๐˜˜ \isansQ Mathematical Sans-Serif Italic Capital Q + ^^^^^^01d619% ๐˜™ \isansR Mathematical Sans-Serif Italic Capital R + ^^^^^^01d61a% ๐˜š \isansS Mathematical Sans-Serif Italic Capital S + ^^^^^^01d61b% ๐˜› \isansT Mathematical Sans-Serif Italic Capital T + ^^^^^^01d61c% ๐˜œ \isansU Mathematical Sans-Serif Italic Capital U + ^^^^^^01d61d% ๐˜ \isansV Mathematical Sans-Serif Italic Capital V + ^^^^^^01d61e% ๐˜ž \isansW Mathematical Sans-Serif Italic Capital W + ^^^^^^01d61f% ๐˜Ÿ \isansX Mathematical Sans-Serif Italic Capital X + ^^^^^^01d620% ๐˜  \isansY Mathematical Sans-Serif Italic Capital Y + ^^^^^^01d621% ๐˜ก \isansZ Mathematical Sans-Serif Italic Capital Z + ^^^^^^01d622% ๐˜ข \isansa Mathematical Sans-Serif Italic Small A + ^^^^^^01d623% ๐˜ฃ \isansb Mathematical Sans-Serif Italic Small B + ^^^^^^01d624% ๐˜ค \isansc Mathematical Sans-Serif Italic Small C + ^^^^^^01d625% ๐˜ฅ \isansd Mathematical Sans-Serif Italic Small D + ^^^^^^01d626% ๐˜ฆ \isanse Mathematical Sans-Serif Italic Small E + ^^^^^^01d627% ๐˜ง \isansf Mathematical Sans-Serif Italic Small F + ^^^^^^01d628% ๐˜จ \isansg Mathematical Sans-Serif Italic Small G + ^^^^^^01d629% ๐˜ฉ \isansh Mathematical Sans-Serif Italic Small H + ^^^^^^01d62a% ๐˜ช \isansi Mathematical Sans-Serif Italic Small I + ^^^^^^01d62b% ๐˜ซ \isansj Mathematical Sans-Serif Italic Small J + ^^^^^^01d62c% ๐˜ฌ \isansk Mathematical Sans-Serif Italic Small K + ^^^^^^01d62d% ๐˜ญ \isansl Mathematical Sans-Serif Italic Small L + ^^^^^^01d62e% ๐˜ฎ \isansm Mathematical Sans-Serif Italic Small M + ^^^^^^01d62f% ๐˜ฏ \isansn Mathematical Sans-Serif Italic Small N + ^^^^^^01d630% ๐˜ฐ \isanso Mathematical Sans-Serif Italic Small O + ^^^^^^01d631% ๐˜ฑ \isansp Mathematical Sans-Serif Italic Small P + ^^^^^^01d632% ๐˜ฒ \isansq Mathematical Sans-Serif Italic Small Q + ^^^^^^01d633% ๐˜ณ \isansr Mathematical Sans-Serif Italic Small R + ^^^^^^01d634% ๐˜ด \isanss Mathematical Sans-Serif Italic Small S + ^^^^^^01d635% ๐˜ต \isanst Mathematical Sans-Serif Italic Small T + ^^^^^^01d636% ๐˜ถ \isansu Mathematical Sans-Serif Italic Small U + ^^^^^^01d637% ๐˜ท \isansv Mathematical Sans-Serif Italic Small V + ^^^^^^01d638% ๐˜ธ \isansw Mathematical Sans-Serif Italic Small W + ^^^^^^01d639% ๐˜น \isansx Mathematical Sans-Serif Italic Small X + ^^^^^^01d63a% ๐˜บ \isansy Mathematical Sans-Serif Italic Small Y + ^^^^^^01d63b% ๐˜ป \isansz Mathematical Sans-Serif Italic Small Z + ^^^^^^01d63c% ๐˜ผ \bisansA Mathematical Sans-Serif Bold Italic Capital A + ^^^^^^01d63d% ๐˜ฝ \bisansB Mathematical Sans-Serif Bold Italic Capital B + ^^^^^^01d63e% ๐˜พ \bisansC Mathematical Sans-Serif Bold Italic Capital C + ^^^^^^01d63f% ๐˜ฟ \bisansD Mathematical Sans-Serif Bold Italic Capital D + ^^^^^^01d640% ๐™€ \bisansE Mathematical Sans-Serif Bold Italic Capital E + ^^^^^^01d641% ๐™ \bisansF Mathematical Sans-Serif Bold Italic Capital F + ^^^^^^01d642% ๐™‚ \bisansG Mathematical Sans-Serif Bold Italic Capital G + ^^^^^^01d643% ๐™ƒ \bisansH Mathematical Sans-Serif Bold Italic Capital H + ^^^^^^01d644% ๐™„ \bisansI Mathematical Sans-Serif Bold Italic Capital I + ^^^^^^01d645% ๐™… \bisansJ Mathematical Sans-Serif Bold Italic Capital J + ^^^^^^01d646% ๐™† \bisansK Mathematical Sans-Serif Bold Italic Capital K + ^^^^^^01d647% ๐™‡ \bisansL Mathematical Sans-Serif Bold Italic Capital L + ^^^^^^01d648% ๐™ˆ \bisansM Mathematical Sans-Serif Bold Italic Capital M + ^^^^^^01d649% ๐™‰ \bisansN Mathematical Sans-Serif Bold Italic Capital N + ^^^^^^01d64a% ๐™Š \bisansO Mathematical Sans-Serif Bold Italic Capital O + ^^^^^^01d64b% ๐™‹ \bisansP Mathematical Sans-Serif Bold Italic Capital P + ^^^^^^01d64c% ๐™Œ \bisansQ Mathematical Sans-Serif Bold Italic Capital Q + ^^^^^^01d64d% ๐™ \bisansR Mathematical Sans-Serif Bold Italic Capital R + ^^^^^^01d64e% ๐™Ž \bisansS Mathematical Sans-Serif Bold Italic Capital S + ^^^^^^01d64f% ๐™ \bisansT Mathematical Sans-Serif Bold Italic Capital T + ^^^^^^01d650% ๐™ \bisansU Mathematical Sans-Serif Bold Italic Capital U + ^^^^^^01d651% ๐™‘ \bisansV Mathematical Sans-Serif Bold Italic Capital V + ^^^^^^01d652% ๐™’ \bisansW Mathematical Sans-Serif Bold Italic Capital W + ^^^^^^01d653% ๐™“ \bisansX Mathematical Sans-Serif Bold Italic Capital X + ^^^^^^01d654% ๐™” \bisansY Mathematical Sans-Serif Bold Italic Capital Y + ^^^^^^01d655% ๐™• \bisansZ Mathematical Sans-Serif Bold Italic Capital Z + ^^^^^^01d656% ๐™– \bisansa Mathematical Sans-Serif Bold Italic Small A + ^^^^^^01d657% ๐™— \bisansb Mathematical Sans-Serif Bold Italic Small B + ^^^^^^01d658% ๐™˜ \bisansc Mathematical Sans-Serif Bold Italic Small C + ^^^^^^01d659% ๐™™ \bisansd Mathematical Sans-Serif Bold Italic Small D + ^^^^^^01d65a% ๐™š \bisanse Mathematical Sans-Serif Bold Italic Small E + ^^^^^^01d65b% ๐™› \bisansf Mathematical Sans-Serif Bold Italic Small F + ^^^^^^01d65c% ๐™œ \bisansg Mathematical Sans-Serif Bold Italic Small G + ^^^^^^01d65d% ๐™ \bisansh Mathematical Sans-Serif Bold Italic Small H + ^^^^^^01d65e% ๐™ž \bisansi Mathematical Sans-Serif Bold Italic Small I + ^^^^^^01d65f% ๐™Ÿ \bisansj Mathematical Sans-Serif Bold Italic Small J + ^^^^^^01d660% ๐™  \bisansk Mathematical Sans-Serif Bold Italic Small K + ^^^^^^01d661% ๐™ก \bisansl Mathematical Sans-Serif Bold Italic Small L + ^^^^^^01d662% ๐™ข \bisansm Mathematical Sans-Serif Bold Italic Small M + ^^^^^^01d663% ๐™ฃ \bisansn Mathematical Sans-Serif Bold Italic Small N + ^^^^^^01d664% ๐™ค \bisanso Mathematical Sans-Serif Bold Italic Small O + ^^^^^^01d665% ๐™ฅ \bisansp Mathematical Sans-Serif Bold Italic Small P + ^^^^^^01d666% ๐™ฆ \bisansq Mathematical Sans-Serif Bold Italic Small Q + ^^^^^^01d667% ๐™ง \bisansr Mathematical Sans-Serif Bold Italic Small R + ^^^^^^01d668% ๐™จ \bisanss Mathematical Sans-Serif Bold Italic Small S + ^^^^^^01d669% ๐™ฉ \bisanst Mathematical Sans-Serif Bold Italic Small T + ^^^^^^01d66a% ๐™ช \bisansu Mathematical Sans-Serif Bold Italic Small U + ^^^^^^01d66b% ๐™ซ \bisansv Mathematical Sans-Serif Bold Italic Small V + ^^^^^^01d66c% ๐™ฌ \bisansw Mathematical Sans-Serif Bold Italic Small W + ^^^^^^01d66d% ๐™ญ \bisansx Mathematical Sans-Serif Bold Italic Small X + ^^^^^^01d66e% ๐™ฎ \bisansy Mathematical Sans-Serif Bold Italic Small Y + ^^^^^^01d66f% ๐™ฏ \bisansz Mathematical Sans-Serif Bold Italic Small Z + ^^^^^^01d670% ๐™ฐ \ttA Mathematical Monospace Capital A + ^^^^^^01d671% ๐™ฑ \ttB Mathematical Monospace Capital B + ^^^^^^01d672% ๐™ฒ \ttC Mathematical Monospace Capital C + ^^^^^^01d673% ๐™ณ \ttD Mathematical Monospace Capital D + ^^^^^^01d674% ๐™ด \ttE Mathematical Monospace Capital E + ^^^^^^01d675% ๐™ต \ttF Mathematical Monospace Capital F + ^^^^^^01d676% ๐™ถ \ttG Mathematical Monospace Capital G + ^^^^^^01d677% ๐™ท \ttH Mathematical Monospace Capital H + ^^^^^^01d678% ๐™ธ \ttI Mathematical Monospace Capital I + ^^^^^^01d679% ๐™น \ttJ Mathematical Monospace Capital J + ^^^^^^01d67a% ๐™บ \ttK Mathematical Monospace Capital K + ^^^^^^01d67b% ๐™ป \ttL Mathematical Monospace Capital L + ^^^^^^01d67c% ๐™ผ \ttM Mathematical Monospace Capital M + ^^^^^^01d67d% ๐™ฝ \ttN Mathematical Monospace Capital N + ^^^^^^01d67e% ๐™พ \ttO Mathematical Monospace Capital O + ^^^^^^01d67f% ๐™ฟ \ttP Mathematical Monospace Capital P + ^^^^^^01d680% ๐š€ \ttQ Mathematical Monospace Capital Q + ^^^^^^01d681% ๐š \ttR Mathematical Monospace Capital R + ^^^^^^01d682% ๐š‚ \ttS Mathematical Monospace Capital S + ^^^^^^01d683% ๐šƒ \ttT Mathematical Monospace Capital T + ^^^^^^01d684% ๐š„ \ttU Mathematical Monospace Capital U + ^^^^^^01d685% ๐š… \ttV Mathematical Monospace Capital V + ^^^^^^01d686% ๐š† \ttW Mathematical Monospace Capital W + ^^^^^^01d687% ๐š‡ \ttX Mathematical Monospace Capital X + ^^^^^^01d688% ๐šˆ \ttY Mathematical Monospace Capital Y + ^^^^^^01d689% ๐š‰ \ttZ Mathematical Monospace Capital Z + ^^^^^^01d68a% ๐šŠ \tta Mathematical Monospace Small A + ^^^^^^01d68b% ๐š‹ \ttb Mathematical Monospace Small B + ^^^^^^01d68c% ๐šŒ \ttc Mathematical Monospace Small C + ^^^^^^01d68d% ๐š \ttd Mathematical Monospace Small D + ^^^^^^01d68e% ๐šŽ \tte Mathematical Monospace Small E + ^^^^^^01d68f% ๐š \ttf Mathematical Monospace Small F + ^^^^^^01d690% ๐š \ttg Mathematical Monospace Small G + ^^^^^^01d691% ๐š‘ \tth Mathematical Monospace Small H + ^^^^^^01d692% ๐š’ \tti Mathematical Monospace Small I + ^^^^^^01d693% ๐š“ \ttj Mathematical Monospace Small J + ^^^^^^01d694% ๐š” \ttk Mathematical Monospace Small K + ^^^^^^01d695% ๐š• \ttl Mathematical Monospace Small L + ^^^^^^01d696% ๐š– \ttm Mathematical Monospace Small M + ^^^^^^01d697% ๐š— \ttn Mathematical Monospace Small N + ^^^^^^01d698% ๐š˜ \tto Mathematical Monospace Small O + ^^^^^^01d699% ๐š™ \ttp Mathematical Monospace Small P + ^^^^^^01d69a% ๐šš \ttq Mathematical Monospace Small Q + ^^^^^^01d69b% ๐š› \ttr Mathematical Monospace Small R + ^^^^^^01d69c% ๐šœ \tts Mathematical Monospace Small S + ^^^^^^01d69d% ๐š \ttt Mathematical Monospace Small T + ^^^^^^01d69e% ๐šž \ttu Mathematical Monospace Small U + ^^^^^^01d69f% ๐šŸ \ttv Mathematical Monospace Small V + ^^^^^^01d6a0% ๐š  \ttw Mathematical Monospace Small W + ^^^^^^01d6a1% ๐šก \ttx Mathematical Monospace Small X + ^^^^^^01d6a2% ๐šข \tty Mathematical Monospace Small Y + ^^^^^^01d6a3% ๐šฃ \ttz Mathematical Monospace Small Z + ^^^^^^01d6a4% ๐šค \itimath Mathematical Italic Small Dotless I + ^^^^^^01d6a5% ๐šฅ \itjmath Mathematical Italic Small Dotless J + ^^^^^^01d6a8% ๐šจ \bfAlpha Mathematical Bold Capital Alpha + ^^^^^^01d6a9% ๐šฉ \bfBeta Mathematical Bold Capital Beta + ^^^^^^01d6aa% ๐šช \bfGamma Mathematical Bold Capital Gamma + ^^^^^^01d6ab% ๐šซ \bfDelta Mathematical Bold Capital Delta + ^^^^^^01d6ac% ๐šฌ \bfEpsilon Mathematical Bold Capital Epsilon + ^^^^^^01d6ad% ๐šญ \bfZeta Mathematical Bold Capital Zeta + ^^^^^^01d6ae% ๐šฎ \bfEta Mathematical Bold Capital Eta + ^^^^^^01d6af% ๐šฏ \bfTheta Mathematical Bold Capital Theta + ^^^^^^01d6b0% ๐šฐ \bfIota Mathematical Bold Capital Iota + ^^^^^^01d6b1% ๐šฑ \bfKappa Mathematical Bold Capital Kappa + ^^^^^^01d6b2% ๐šฒ \bfLambda Mathematical Bold Capital Lamda + ^^^^^^01d6b3% ๐šณ \bfMu Mathematical Bold Capital Mu + ^^^^^^01d6b4% ๐šด \bfNu Mathematical Bold Capital Nu + ^^^^^^01d6b5% ๐šต \bfXi Mathematical Bold Capital Xi + ^^^^^^01d6b6% ๐šถ \bfOmicron Mathematical Bold Capital Omicron + ^^^^^^01d6b7% ๐šท \bfPi Mathematical Bold Capital Pi + ^^^^^^01d6b8% ๐šธ \bfRho Mathematical Bold Capital Rho + ^^^^^^01d6b9% ๐šน \bfvarTheta Mathematical Bold Capital Theta Symbol + ^^^^^^01d6ba% ๐šบ \bfSigma Mathematical Bold Capital Sigma + ^^^^^^01d6bb% ๐šป \bfTau Mathematical Bold Capital Tau + ^^^^^^01d6bc% ๐šผ \bfUpsilon Mathematical Bold Capital Upsilon + ^^^^^^01d6bd% ๐šฝ \bfPhi Mathematical Bold Capital Phi + ^^^^^^01d6be% ๐šพ \bfChi Mathematical Bold Capital Chi + ^^^^^^01d6bf% ๐šฟ \bfPsi Mathematical Bold Capital Psi + ^^^^^^01d6c0% ๐›€ \bfOmega Mathematical Bold Capital Omega + ^^^^^^01d6c1% ๐› \bfnabla Mathematical Bold Nabla + ^^^^^^01d6c2% ๐›‚ \bfalpha Mathematical Bold Small Alpha + ^^^^^^01d6c3% ๐›ƒ \bfbeta Mathematical Bold Small Beta + ^^^^^^01d6c4% ๐›„ \bfgamma Mathematical Bold Small Gamma + ^^^^^^01d6c5% ๐›… \bfdelta Mathematical Bold Small Delta + ^^^^^^01d6c6% ๐›† \bfepsilon Mathematical Bold Small Epsilon + ^^^^^^01d6c7% ๐›‡ \bfzeta Mathematical Bold Small Zeta + ^^^^^^01d6c8% ๐›ˆ \bfeta Mathematical Bold Small Eta + ^^^^^^01d6c9% ๐›‰ \bftheta Mathematical Bold Small Theta + ^^^^^^01d6ca% ๐›Š \bfiota Mathematical Bold Small Iota + ^^^^^^01d6cb% ๐›‹ \bfkappa Mathematical Bold Small Kappa + ^^^^^^01d6cc% ๐›Œ \bflambda Mathematical Bold Small Lamda + ^^^^^^01d6cd% ๐› \bfmu Mathematical Bold Small Mu + ^^^^^^01d6ce% ๐›Ž \bfnu Mathematical Bold Small Nu + ^^^^^^01d6cf% ๐› \bfxi Mathematical Bold Small Xi + ^^^^^^01d6d0% ๐› \bfomicron Mathematical Bold Small Omicron + ^^^^^^01d6d1% ๐›‘ \bfpi Mathematical Bold Small Pi + ^^^^^^01d6d2% ๐›’ \bfrho Mathematical Bold Small Rho + ^^^^^^01d6d3% ๐›“ \bfvarsigma Mathematical Bold Small Final Sigma + ^^^^^^01d6d4% ๐›” \bfsigma Mathematical Bold Small Sigma + ^^^^^^01d6d5% ๐›• \bftau Mathematical Bold Small Tau + ^^^^^^01d6d6% ๐›– \bfupsilon Mathematical Bold Small Upsilon + ^^^^^^01d6d7% ๐›— \bfvarphi Mathematical Bold Small Phi + ^^^^^^01d6d8% ๐›˜ \bfchi Mathematical Bold Small Chi + ^^^^^^01d6d9% ๐›™ \bfpsi Mathematical Bold Small Psi + ^^^^^^01d6da% ๐›š \bfomega Mathematical Bold Small Omega + ^^^^^^01d6db% ๐›› \bfpartial Mathematical Bold Partial Differential + ^^^^^^01d6dc% ๐›œ \bfvarepsilon Mathematical Bold Epsilon Symbol + ^^^^^^01d6dd% ๐› \bfvartheta Mathematical Bold Theta Symbol + ^^^^^^01d6de% ๐›ž \bfvarkappa Mathematical Bold Kappa Symbol + ^^^^^^01d6df% ๐›Ÿ \bfphi Mathematical Bold Phi Symbol + ^^^^^^01d6e0% ๐›  \bfvarrho Mathematical Bold Rho Symbol + ^^^^^^01d6e1% ๐›ก \bfvarpi Mathematical Bold Pi Symbol + ^^^^^^01d6e2% ๐›ข \itAlpha Mathematical Italic Capital Alpha + ^^^^^^01d6e3% ๐›ฃ \itBeta Mathematical Italic Capital Beta + ^^^^^^01d6e4% ๐›ค \itGamma Mathematical Italic Capital Gamma + ^^^^^^01d6e5% ๐›ฅ \itDelta Mathematical Italic Capital Delta + ^^^^^^01d6e6% ๐›ฆ \itEpsilon Mathematical Italic Capital Epsilon + ^^^^^^01d6e7% ๐›ง \itZeta Mathematical Italic Capital Zeta + ^^^^^^01d6e8% ๐›จ \itEta Mathematical Italic Capital Eta + ^^^^^^01d6e9% ๐›ฉ \itTheta Mathematical Italic Capital Theta + ^^^^^^01d6ea% ๐›ช \itIota Mathematical Italic Capital Iota + ^^^^^^01d6eb% ๐›ซ \itKappa Mathematical Italic Capital Kappa + ^^^^^^01d6ec% ๐›ฌ \itLambda Mathematical Italic Capital Lamda + ^^^^^^01d6ed% ๐›ญ \itMu Mathematical Italic Capital Mu + ^^^^^^01d6ee% ๐›ฎ \itNu Mathematical Italic Capital Nu + ^^^^^^01d6ef% ๐›ฏ \itXi Mathematical Italic Capital Xi + ^^^^^^01d6f0% ๐›ฐ \itOmicron Mathematical Italic Capital Omicron + ^^^^^^01d6f1% ๐›ฑ \itPi Mathematical Italic Capital Pi + ^^^^^^01d6f2% ๐›ฒ \itRho Mathematical Italic Capital Rho + ^^^^^^01d6f3% ๐›ณ \itvarTheta Mathematical Italic Capital Theta Symbol + ^^^^^^01d6f4% ๐›ด \itSigma Mathematical Italic Capital Sigma + ^^^^^^01d6f5% ๐›ต \itTau Mathematical Italic Capital Tau + ^^^^^^01d6f6% ๐›ถ \itUpsilon Mathematical Italic Capital Upsilon + ^^^^^^01d6f7% ๐›ท \itPhi Mathematical Italic Capital Phi + ^^^^^^01d6f8% ๐›ธ \itChi Mathematical Italic Capital Chi + ^^^^^^01d6f9% ๐›น \itPsi Mathematical Italic Capital Psi + ^^^^^^01d6fa% ๐›บ \itOmega Mathematical Italic Capital Omega + ^^^^^^01d6fb% ๐›ป \itnabla Mathematical Italic Nabla + ^^^^^^01d6fc% ๐›ผ \italpha Mathematical Italic Small Alpha + ^^^^^^01d6fd% ๐›ฝ \itbeta Mathematical Italic Small Beta + ^^^^^^01d6fe% ๐›พ \itgamma Mathematical Italic Small Gamma + ^^^^^^01d6ff% ๐›ฟ \itdelta Mathematical Italic Small Delta + ^^^^^^01d700% ๐œ€ \itepsilon Mathematical Italic Small Epsilon + ^^^^^^01d701% ๐œ \itzeta Mathematical Italic Small Zeta + ^^^^^^01d702% ๐œ‚ \iteta Mathematical Italic Small Eta + ^^^^^^01d703% ๐œƒ \ittheta Mathematical Italic Small Theta + ^^^^^^01d704% ๐œ„ \itiota Mathematical Italic Small Iota + ^^^^^^01d705% ๐œ… \itkappa Mathematical Italic Small Kappa + ^^^^^^01d706% ๐œ† \itlambda Mathematical Italic Small Lamda + ^^^^^^01d707% ๐œ‡ \itmu Mathematical Italic Small Mu + ^^^^^^01d708% ๐œˆ \itnu Mathematical Italic Small Nu + ^^^^^^01d709% ๐œ‰ \itxi Mathematical Italic Small Xi + ^^^^^^01d70a% ๐œŠ \itomicron Mathematical Italic Small Omicron + ^^^^^^01d70b% ๐œ‹ \itpi Mathematical Italic Small Pi + ^^^^^^01d70c% ๐œŒ \itrho Mathematical Italic Small Rho + ^^^^^^01d70d% ๐œ \itvarsigma Mathematical Italic Small Final Sigma + ^^^^^^01d70e% ๐œŽ \itsigma Mathematical Italic Small Sigma + ^^^^^^01d70f% ๐œ \ittau Mathematical Italic Small Tau + ^^^^^^01d710% ๐œ \itupsilon Mathematical Italic Small Upsilon + ^^^^^^01d711% ๐œ‘ \itphi Mathematical Italic Small Phi + ^^^^^^01d712% ๐œ’ \itchi Mathematical Italic Small Chi + ^^^^^^01d713% ๐œ“ \itpsi Mathematical Italic Small Psi + ^^^^^^01d714% ๐œ” \itomega Mathematical Italic Small Omega + ^^^^^^01d715% ๐œ• \itpartial Mathematical Italic Partial Differential + ^^^^^^01d716% ๐œ– \itvarepsilon Mathematical Italic Epsilon Symbol + ^^^^^^01d717% ๐œ— \itvartheta Mathematical Italic Theta Symbol + ^^^^^^01d718% ๐œ˜ \itvarkappa Mathematical Italic Kappa Symbol + ^^^^^^01d719% ๐œ™ \itvarphi Mathematical Italic Phi Symbol + ^^^^^^01d71a% ๐œš \itvarrho Mathematical Italic Rho Symbol + ^^^^^^01d71b% ๐œ› \itvarpi Mathematical Italic Pi Symbol + ^^^^^^01d71c% ๐œœ \biAlpha Mathematical Bold Italic Capital Alpha + ^^^^^^01d71d% ๐œ \biBeta Mathematical Bold Italic Capital Beta + ^^^^^^01d71e% ๐œž \biGamma Mathematical Bold Italic Capital Gamma + ^^^^^^01d71f% ๐œŸ \biDelta Mathematical Bold Italic Capital Delta + ^^^^^^01d720% ๐œ  \biEpsilon Mathematical Bold Italic Capital Epsilon + ^^^^^^01d721% ๐œก \biZeta Mathematical Bold Italic Capital Zeta + ^^^^^^01d722% ๐œข \biEta Mathematical Bold Italic Capital Eta + ^^^^^^01d723% ๐œฃ \biTheta Mathematical Bold Italic Capital Theta + ^^^^^^01d724% ๐œค \biIota Mathematical Bold Italic Capital Iota + ^^^^^^01d725% ๐œฅ \biKappa Mathematical Bold Italic Capital Kappa + ^^^^^^01d726% ๐œฆ \biLambda Mathematical Bold Italic Capital Lamda + ^^^^^^01d727% ๐œง \biMu Mathematical Bold Italic Capital Mu + ^^^^^^01d728% ๐œจ \biNu Mathematical Bold Italic Capital Nu + ^^^^^^01d729% ๐œฉ \biXi Mathematical Bold Italic Capital Xi + ^^^^^^01d72a% ๐œช \biOmicron Mathematical Bold Italic Capital Omicron + ^^^^^^01d72b% ๐œซ \biPi Mathematical Bold Italic Capital Pi + ^^^^^^01d72c% ๐œฌ \biRho Mathematical Bold Italic Capital Rho + ^^^^^^01d72d% ๐œญ \bivarTheta Mathematical Bold Italic Capital Theta Symbol + ^^^^^^01d72e% ๐œฎ \biSigma Mathematical Bold Italic Capital Sigma + ^^^^^^01d72f% ๐œฏ \biTau Mathematical Bold Italic Capital Tau + ^^^^^^01d730% ๐œฐ \biUpsilon Mathematical Bold Italic Capital Upsilon + ^^^^^^01d731% ๐œฑ \biPhi Mathematical Bold Italic Capital Phi + ^^^^^^01d732% ๐œฒ \biChi Mathematical Bold Italic Capital Chi + ^^^^^^01d733% ๐œณ \biPsi Mathematical Bold Italic Capital Psi + ^^^^^^01d734% ๐œด \biOmega Mathematical Bold Italic Capital Omega + ^^^^^^01d735% ๐œต \binabla Mathematical Bold Italic Nabla + ^^^^^^01d736% ๐œถ \bialpha Mathematical Bold Italic Small Alpha + ^^^^^^01d737% ๐œท \bibeta Mathematical Bold Italic Small Beta + ^^^^^^01d738% ๐œธ \bigamma Mathematical Bold Italic Small Gamma + ^^^^^^01d739% ๐œน \bidelta Mathematical Bold Italic Small Delta + ^^^^^^01d73a% ๐œบ \biepsilon Mathematical Bold Italic Small Epsilon + ^^^^^^01d73b% ๐œป \bizeta Mathematical Bold Italic Small Zeta + ^^^^^^01d73c% ๐œผ \bieta Mathematical Bold Italic Small Eta + ^^^^^^01d73d% ๐œฝ \bitheta Mathematical Bold Italic Small Theta + ^^^^^^01d73e% ๐œพ \biiota Mathematical Bold Italic Small Iota + ^^^^^^01d73f% ๐œฟ \bikappa Mathematical Bold Italic Small Kappa + ^^^^^^01d740% ๐€ \bilambda Mathematical Bold Italic Small Lamda + ^^^^^^01d741% ๐ \bimu Mathematical Bold Italic Small Mu + ^^^^^^01d742% ๐‚ \binu Mathematical Bold Italic Small Nu + ^^^^^^01d743% ๐ƒ \bixi Mathematical Bold Italic Small Xi + ^^^^^^01d744% ๐„ \biomicron Mathematical Bold Italic Small Omicron + ^^^^^^01d745% ๐… \bipi Mathematical Bold Italic Small Pi + ^^^^^^01d746% ๐† \birho Mathematical Bold Italic Small Rho + ^^^^^^01d747% ๐‡ \bivarsigma Mathematical Bold Italic Small Final Sigma + ^^^^^^01d748% ๐ˆ \bisigma Mathematical Bold Italic Small Sigma + ^^^^^^01d749% ๐‰ \bitau Mathematical Bold Italic Small Tau + ^^^^^^01d74a% ๐Š \biupsilon Mathematical Bold Italic Small Upsilon + ^^^^^^01d74b% ๐‹ \biphi Mathematical Bold Italic Small Phi + ^^^^^^01d74c% ๐Œ \bichi Mathematical Bold Italic Small Chi + ^^^^^^01d74d% ๐ \bipsi Mathematical Bold Italic Small Psi + ^^^^^^01d74e% ๐Ž \biomega Mathematical Bold Italic Small Omega + ^^^^^^01d74f% ๐ \bipartial Mathematical Bold Italic Partial Differential + ^^^^^^01d750% ๐ \bivarepsilon Mathematical Bold Italic Epsilon Symbol + ^^^^^^01d751% ๐‘ \bivartheta Mathematical Bold Italic Theta Symbol + ^^^^^^01d752% ๐’ \bivarkappa Mathematical Bold Italic Kappa Symbol + ^^^^^^01d753% ๐“ \bivarphi Mathematical Bold Italic Phi Symbol + ^^^^^^01d754% ๐” \bivarrho Mathematical Bold Italic Rho Symbol + ^^^^^^01d755% ๐• \bivarpi Mathematical Bold Italic Pi Symbol + ^^^^^^01d756% ๐– \bsansAlpha Mathematical Sans-Serif Bold Capital Alpha + ^^^^^^01d757% ๐— \bsansBeta Mathematical Sans-Serif Bold Capital Beta + ^^^^^^01d758% ๐˜ \bsansGamma Mathematical Sans-Serif Bold Capital Gamma + ^^^^^^01d759% ๐™ \bsansDelta Mathematical Sans-Serif Bold Capital Delta + ^^^^^^01d75a% ๐š \bsansEpsilon Mathematical Sans-Serif Bold Capital Epsilon + ^^^^^^01d75b% ๐› \bsansZeta Mathematical Sans-Serif Bold Capital Zeta + ^^^^^^01d75c% ๐œ \bsansEta Mathematical Sans-Serif Bold Capital Eta + ^^^^^^01d75d% ๐ \bsansTheta Mathematical Sans-Serif Bold Capital Theta + ^^^^^^01d75e% ๐ž \bsansIota Mathematical Sans-Serif Bold Capital Iota + ^^^^^^01d75f% ๐Ÿ \bsansKappa Mathematical Sans-Serif Bold Capital Kappa + ^^^^^^01d760% ๐  \bsansLambda Mathematical Sans-Serif Bold Capital Lamda + ^^^^^^01d761% ๐ก \bsansMu Mathematical Sans-Serif Bold Capital Mu + ^^^^^^01d762% ๐ข \bsansNu Mathematical Sans-Serif Bold Capital Nu + ^^^^^^01d763% ๐ฃ \bsansXi Mathematical Sans-Serif Bold Capital Xi + ^^^^^^01d764% ๐ค \bsansOmicron Mathematical Sans-Serif Bold Capital Omicron + ^^^^^^01d765% ๐ฅ \bsansPi Mathematical Sans-Serif Bold Capital Pi + ^^^^^^01d766% ๐ฆ \bsansRho Mathematical Sans-Serif Bold Capital Rho + ^^^^^^01d767% ๐ง \bsansvarTheta Mathematical Sans-Serif Bold Capital Theta Symbol + ^^^^^^01d768% ๐จ \bsansSigma Mathematical Sans-Serif Bold Capital Sigma + ^^^^^^01d769% ๐ฉ \bsansTau Mathematical Sans-Serif Bold Capital Tau + ^^^^^^01d76a% ๐ช \bsansUpsilon Mathematical Sans-Serif Bold Capital Upsilon + ^^^^^^01d76b% ๐ซ \bsansPhi Mathematical Sans-Serif Bold Capital Phi + ^^^^^^01d76c% ๐ฌ \bsansChi Mathematical Sans-Serif Bold Capital Chi + ^^^^^^01d76d% ๐ญ \bsansPsi Mathematical Sans-Serif Bold Capital Psi + ^^^^^^01d76e% ๐ฎ \bsansOmega Mathematical Sans-Serif Bold Capital Omega + ^^^^^^01d76f% ๐ฏ \bsansnabla Mathematical Sans-Serif Bold Nabla + ^^^^^^01d770% ๐ฐ \bsansalpha Mathematical Sans-Serif Bold Small Alpha + ^^^^^^01d771% ๐ฑ \bsansbeta Mathematical Sans-Serif Bold Small Beta + ^^^^^^01d772% ๐ฒ \bsansgamma Mathematical Sans-Serif Bold Small Gamma + ^^^^^^01d773% ๐ณ \bsansdelta Mathematical Sans-Serif Bold Small Delta + ^^^^^^01d774% ๐ด \bsansepsilon Mathematical Sans-Serif Bold Small Epsilon + ^^^^^^01d775% ๐ต \bsanszeta Mathematical Sans-Serif Bold Small Zeta + ^^^^^^01d776% ๐ถ \bsanseta Mathematical Sans-Serif Bold Small Eta + ^^^^^^01d777% ๐ท \bsanstheta Mathematical Sans-Serif Bold Small Theta + ^^^^^^01d778% ๐ธ \bsansiota Mathematical Sans-Serif Bold Small Iota + ^^^^^^01d779% ๐น \bsanskappa Mathematical Sans-Serif Bold Small Kappa + ^^^^^^01d77a% ๐บ \bsanslambda Mathematical Sans-Serif Bold Small Lamda + ^^^^^^01d77b% ๐ป \bsansmu Mathematical Sans-Serif Bold Small Mu + ^^^^^^01d77c% ๐ผ \bsansnu Mathematical Sans-Serif Bold Small Nu + ^^^^^^01d77d% ๐ฝ \bsansxi Mathematical Sans-Serif Bold Small Xi + ^^^^^^01d77e% ๐พ \bsansomicron Mathematical Sans-Serif Bold Small Omicron + ^^^^^^01d77f% ๐ฟ \bsanspi Mathematical Sans-Serif Bold Small Pi + ^^^^^^01d780% ๐ž€ \bsansrho Mathematical Sans-Serif Bold Small Rho + ^^^^^^01d781% ๐ž \bsansvarsigma Mathematical Sans-Serif Bold Small Final Sigma + ^^^^^^01d782% ๐ž‚ \bsanssigma Mathematical Sans-Serif Bold Small Sigma + ^^^^^^01d783% ๐žƒ \bsanstau Mathematical Sans-Serif Bold Small Tau + ^^^^^^01d784% ๐ž„ \bsansupsilon Mathematical Sans-Serif Bold Small Upsilon + ^^^^^^01d785% ๐ž… \bsansphi Mathematical Sans-Serif Bold Small Phi + ^^^^^^01d786% ๐ž† \bsanschi Mathematical Sans-Serif Bold Small Chi + ^^^^^^01d787% ๐ž‡ \bsanspsi Mathematical Sans-Serif Bold Small Psi + ^^^^^^01d788% ๐žˆ \bsansomega Mathematical Sans-Serif Bold Small Omega + ^^^^^^01d789% ๐ž‰ \bsanspartial Mathematical Sans-Serif Bold Partial Differential + ^^^^^^01d78a% ๐žŠ \bsansvarepsilon Mathematical Sans-Serif Bold Epsilon Symbol + ^^^^^^01d78b% ๐ž‹ \bsansvartheta Mathematical Sans-Serif Bold Theta Symbol + ^^^^^^01d78c% ๐žŒ \bsansvarkappa Mathematical Sans-Serif Bold Kappa Symbol + ^^^^^^01d78d% ๐ž \bsansvarphi Mathematical Sans-Serif Bold Phi Symbol + ^^^^^^01d78e% ๐žŽ \bsansvarrho Mathematical Sans-Serif Bold Rho Symbol + ^^^^^^01d78f% ๐ž \bsansvarpi Mathematical Sans-Serif Bold Pi Symbol + ^^^^^^01d790% ๐ž \bisansAlpha Mathematical Sans-Serif Bold Italic Capital Alpha + ^^^^^^01d791% ๐ž‘ \bisansBeta Mathematical Sans-Serif Bold Italic Capital Beta + ^^^^^^01d792% ๐ž’ \bisansGamma Mathematical Sans-Serif Bold Italic Capital Gamma + ^^^^^^01d793% ๐ž“ \bisansDelta Mathematical Sans-Serif Bold Italic Capital Delta + ^^^^^^01d794% ๐ž” \bisansEpsilon Mathematical Sans-Serif Bold Italic Capital Epsilon + ^^^^^^01d795% ๐ž• \bisansZeta Mathematical Sans-Serif Bold Italic Capital Zeta + ^^^^^^01d796% ๐ž– \bisansEta Mathematical Sans-Serif Bold Italic Capital Eta + ^^^^^^01d797% ๐ž— \bisansTheta Mathematical Sans-Serif Bold Italic Capital Theta + ^^^^^^01d798% ๐ž˜ \bisansIota Mathematical Sans-Serif Bold Italic Capital Iota + ^^^^^^01d799% ๐ž™ \bisansKappa Mathematical Sans-Serif Bold Italic Capital Kappa + ^^^^^^01d79a% ๐žš \bisansLambda Mathematical Sans-Serif Bold Italic Capital Lamda + ^^^^^^01d79b% ๐ž› \bisansMu Mathematical Sans-Serif Bold Italic Capital Mu + ^^^^^^01d79c% ๐žœ \bisansNu Mathematical Sans-Serif Bold Italic Capital Nu + ^^^^^^01d79d% ๐ž \bisansXi Mathematical Sans-Serif Bold Italic Capital Xi + ^^^^^^01d79e% ๐žž \bisansOmicron Mathematical Sans-Serif Bold Italic Capital Omicron + ^^^^^^01d79f% ๐žŸ \bisansPi Mathematical Sans-Serif Bold Italic Capital Pi + ^^^^^^01d7a0% ๐ž  \bisansRho Mathematical Sans-Serif Bold Italic Capital Rho + ^^^^^^01d7a1% ๐žก \bisansvarTheta Mathematical Sans-Serif Bold Italic Capital Theta Symbol + ^^^^^^01d7a2% ๐žข \bisansSigma Mathematical Sans-Serif Bold Italic Capital Sigma + ^^^^^^01d7a3% ๐žฃ \bisansTau Mathematical Sans-Serif Bold Italic Capital Tau + ^^^^^^01d7a4% ๐žค \bisansUpsilon Mathematical Sans-Serif Bold Italic Capital Upsilon + ^^^^^^01d7a5% ๐žฅ \bisansPhi Mathematical Sans-Serif Bold Italic Capital Phi + ^^^^^^01d7a6% ๐žฆ \bisansChi Mathematical Sans-Serif Bold Italic Capital Chi + ^^^^^^01d7a7% ๐žง \bisansPsi Mathematical Sans-Serif Bold Italic Capital Psi + ^^^^^^01d7a8% ๐žจ \bisansOmega Mathematical Sans-Serif Bold Italic Capital Omega + ^^^^^^01d7a9% ๐žฉ \bisansnabla Mathematical Sans-Serif Bold Italic Nabla + ^^^^^^01d7aa% ๐žช \bisansalpha Mathematical Sans-Serif Bold Italic Small Alpha + ^^^^^^01d7ab% ๐žซ \bisansbeta Mathematical Sans-Serif Bold Italic Small Beta + ^^^^^^01d7ac% ๐žฌ \bisansgamma Mathematical Sans-Serif Bold Italic Small Gamma + ^^^^^^01d7ad% ๐žญ \bisansdelta Mathematical Sans-Serif Bold Italic Small Delta + ^^^^^^01d7ae% ๐žฎ \bisansepsilon Mathematical Sans-Serif Bold Italic Small Epsilon + ^^^^^^01d7af% ๐žฏ \bisanszeta Mathematical Sans-Serif Bold Italic Small Zeta + ^^^^^^01d7b0% ๐žฐ \bisanseta Mathematical Sans-Serif Bold Italic Small Eta + ^^^^^^01d7b1% ๐žฑ \bisanstheta Mathematical Sans-Serif Bold Italic Small Theta + ^^^^^^01d7b2% ๐žฒ \bisansiota Mathematical Sans-Serif Bold Italic Small Iota + ^^^^^^01d7b3% ๐žณ \bisanskappa Mathematical Sans-Serif Bold Italic Small Kappa + ^^^^^^01d7b4% ๐žด \bisanslambda Mathematical Sans-Serif Bold Italic Small Lamda + ^^^^^^01d7b5% ๐žต \bisansmu Mathematical Sans-Serif Bold Italic Small Mu + ^^^^^^01d7b6% ๐žถ \bisansnu Mathematical Sans-Serif Bold Italic Small Nu + ^^^^^^01d7b7% ๐žท \bisansxi Mathematical Sans-Serif Bold Italic Small Xi + ^^^^^^01d7b8% ๐žธ \bisansomicron Mathematical Sans-Serif Bold Italic Small Omicron + ^^^^^^01d7b9% ๐žน \bisanspi Mathematical Sans-Serif Bold Italic Small Pi + ^^^^^^01d7ba% ๐žบ \bisansrho Mathematical Sans-Serif Bold Italic Small Rho + ^^^^^^01d7bb% ๐žป \bisansvarsigma Mathematical Sans-Serif Bold Italic Small Final Sigma + ^^^^^^01d7bc% ๐žผ \bisanssigma Mathematical Sans-Serif Bold Italic Small Sigma + ^^^^^^01d7bd% ๐žฝ \bisanstau Mathematical Sans-Serif Bold Italic Small Tau + ^^^^^^01d7be% ๐žพ \bisansupsilon Mathematical Sans-Serif Bold Italic Small Upsilon + ^^^^^^01d7bf% ๐žฟ \bisansphi Mathematical Sans-Serif Bold Italic Small Phi + ^^^^^^01d7c0% ๐Ÿ€ \bisanschi Mathematical Sans-Serif Bold Italic Small Chi + ^^^^^^01d7c1% ๐Ÿ \bisanspsi Mathematical Sans-Serif Bold Italic Small Psi + ^^^^^^01d7c2% ๐Ÿ‚ \bisansomega Mathematical Sans-Serif Bold Italic Small Omega + ^^^^^^01d7c3% ๐Ÿƒ \bisanspartial Mathematical Sans-Serif Bold Italic Partial Differential + ^^^^^^01d7c4% ๐Ÿ„ \bisansvarepsilon Mathematical Sans-Serif Bold Italic Epsilon Symbol + ^^^^^^01d7c5% ๐Ÿ… \bisansvartheta Mathematical Sans-Serif Bold Italic Theta Symbol + ^^^^^^01d7c6% ๐Ÿ† \bisansvarkappa Mathematical Sans-Serif Bold Italic Kappa Symbol + ^^^^^^01d7c7% ๐Ÿ‡ \bisansvarphi Mathematical Sans-Serif Bold Italic Phi Symbol + ^^^^^^01d7c8% ๐Ÿˆ \bisansvarrho Mathematical Sans-Serif Bold Italic Rho Symbol + ^^^^^^01d7c9% ๐Ÿ‰ \bisansvarpi Mathematical Sans-Serif Bold Italic Pi Symbol + ^^^^^^01d7ca% ๐ŸŠ \bfDigamma Mathematical Bold Capital Digamma + ^^^^^^01d7cb% ๐Ÿ‹ \bfdigamma Mathematical Bold Small Digamma + ^^^^^^01d7ce% ๐ŸŽ \bfzero Mathematical Bold Digit Zero + ^^^^^^01d7cf% ๐Ÿ \bfone Mathematical Bold Digit One + ^^^^^^01d7d0% ๐Ÿ \bftwo Mathematical Bold Digit Two + ^^^^^^01d7d1% ๐Ÿ‘ \bfthree Mathematical Bold Digit Three + ^^^^^^01d7d2% ๐Ÿ’ \bffour Mathematical Bold Digit Four + ^^^^^^01d7d3% ๐Ÿ“ \bffive Mathematical Bold Digit Five + ^^^^^^01d7d4% ๐Ÿ” \bfsix Mathematical Bold Digit Six + ^^^^^^01d7d5% ๐Ÿ• \bfseven Mathematical Bold Digit Seven + ^^^^^^01d7d6% ๐Ÿ– \bfeight Mathematical Bold Digit Eight + ^^^^^^01d7d7% ๐Ÿ— \bfnine Mathematical Bold Digit Nine + ^^^^^^01d7d8% ๐Ÿ˜ \bbzero Mathematical Double-Struck Digit Zero + ^^^^^^01d7d9% ๐Ÿ™ \bbone Mathematical Double-Struck Digit One + ^^^^^^01d7da% ๐Ÿš \bbtwo Mathematical Double-Struck Digit Two + ^^^^^^01d7db% ๐Ÿ› \bbthree Mathematical Double-Struck Digit Three + ^^^^^^01d7dc% ๐Ÿœ \bbfour Mathematical Double-Struck Digit Four + ^^^^^^01d7dd% ๐Ÿ \bbfive Mathematical Double-Struck Digit Five + ^^^^^^01d7de% ๐Ÿž \bbsix Mathematical Double-Struck Digit Six + ^^^^^^01d7df% ๐ŸŸ \bbseven Mathematical Double-Struck Digit Seven + ^^^^^^01d7e0% ๐Ÿ  \bbeight Mathematical Double-Struck Digit Eight + ^^^^^^01d7e1% ๐Ÿก \bbnine Mathematical Double-Struck Digit Nine + ^^^^^^01d7e2% ๐Ÿข \sanszero Mathematical Sans-Serif Digit Zero + ^^^^^^01d7e3% ๐Ÿฃ \sansone Mathematical Sans-Serif Digit One + ^^^^^^01d7e4% ๐Ÿค \sanstwo Mathematical Sans-Serif Digit Two + ^^^^^^01d7e5% ๐Ÿฅ \sansthree Mathematical Sans-Serif Digit Three + ^^^^^^01d7e6% ๐Ÿฆ \sansfour Mathematical Sans-Serif Digit Four + ^^^^^^01d7e7% ๐Ÿง \sansfive Mathematical Sans-Serif Digit Five + ^^^^^^01d7e8% ๐Ÿจ \sanssix Mathematical Sans-Serif Digit Six + ^^^^^^01d7e9% ๐Ÿฉ \sansseven Mathematical Sans-Serif Digit Seven + ^^^^^^01d7ea% ๐Ÿช \sanseight Mathematical Sans-Serif Digit Eight + ^^^^^^01d7eb% ๐Ÿซ \sansnine Mathematical Sans-Serif Digit Nine + ^^^^^^01d7ec% ๐Ÿฌ \bsanszero Mathematical Sans-Serif Bold Digit Zero + ^^^^^^01d7ed% ๐Ÿญ \bsansone Mathematical Sans-Serif Bold Digit One + ^^^^^^01d7ee% ๐Ÿฎ \bsanstwo Mathematical Sans-Serif Bold Digit Two + ^^^^^^01d7ef% ๐Ÿฏ \bsansthree Mathematical Sans-Serif Bold Digit Three + ^^^^^^01d7f0% ๐Ÿฐ \bsansfour Mathematical Sans-Serif Bold Digit Four + ^^^^^^01d7f1% ๐Ÿฑ \bsansfive Mathematical Sans-Serif Bold Digit Five + ^^^^^^01d7f2% ๐Ÿฒ \bsanssix Mathematical Sans-Serif Bold Digit Six + ^^^^^^01d7f3% ๐Ÿณ \bsansseven Mathematical Sans-Serif Bold Digit Seven + ^^^^^^01d7f4% ๐Ÿด \bsanseight Mathematical Sans-Serif Bold Digit Eight + ^^^^^^01d7f5% ๐Ÿต \bsansnine Mathematical Sans-Serif Bold Digit Nine + ^^^^^^01d7f6% ๐Ÿถ \ttzero Mathematical Monospace Digit Zero + ^^^^^^01d7f7% ๐Ÿท \ttone Mathematical Monospace Digit One + ^^^^^^01d7f8% ๐Ÿธ \tttwo Mathematical Monospace Digit Two + ^^^^^^01d7f9% ๐Ÿน \ttthree Mathematical Monospace Digit Three + ^^^^^^01d7fa% ๐Ÿบ \ttfour Mathematical Monospace Digit Four + ^^^^^^01d7fb% ๐Ÿป \ttfive Mathematical Monospace Digit Five + ^^^^^^01d7fc% ๐Ÿผ \ttsix Mathematical Monospace Digit Six + ^^^^^^01d7fd% ๐Ÿฝ \ttseven Mathematical Monospace Digit Seven + ^^^^^^01d7fe% ๐Ÿพ \tteight Mathematical Monospace Digit Eight + ^^^^^^01d7ff% ๐Ÿฟ \ttnine Mathematical Monospace Digit Nine + % zero-padded 6-digit hex (emoji) + ^^^^^^01f004% ๐Ÿ€„ \:mahjong: Mahjong Tile Red Dragon + ^^^^^^01f0cf% ๐Ÿƒ \:black_joker: Playing Card Black Joker + ^^^^^^01f170% ๐Ÿ…ฐ \:a: Negative Squared Latin Capital Letter A + ^^^^^^01f171% ๐Ÿ…ฑ \:b: Negative Squared Latin Capital Letter B + ^^^^^^01f17e% ๐Ÿ…พ \:o2: Negative Squared Latin Capital Letter O + ^^^^^^01f17f% ๐Ÿ…ฟ \:parking: Negative Squared Latin Capital Letter P + ^^^^^^01f18e% ๐Ÿ†Ž \:ab: Negative Squared Ab + ^^^^^^01f191% ๐Ÿ†‘ \:cl: Squared Cl + ^^^^^^01f192% ๐Ÿ†’ \:cool: Squared Cool + ^^^^^^01f193% ๐Ÿ†“ \:free: Squared Free + ^^^^^^01f194% ๐Ÿ†” \:id: Squared Id + ^^^^^^01f195% ๐Ÿ†• \:new: Squared New + ^^^^^^01f196% ๐Ÿ†– \:ng: Squared Ng + ^^^^^^01f197% ๐Ÿ†— \:ok: Squared Ok + ^^^^^^01f198% ๐Ÿ†˜ \:sos: Squared Sos + ^^^^^^01f199% ๐Ÿ†™ \:up: Squared Up With Exclamation Mark + ^^^^^^01f19a% ๐Ÿ†š \:vs: Squared Vs + ^^^^^^01f201% ๐Ÿˆ \:koko: Squared Katakana Koko + ^^^^^^01f202% ๐Ÿˆ‚ \:sa: Squared Katakana Sa + ^^^^^^01f21a% ๐Ÿˆš \:u7121: Squared Cjk Unified Ideograph-7121 + ^^^^^^01f22f% ๐Ÿˆฏ \:u6307: Squared Cjk Unified Ideograph-6307 + ^^^^^^01f232% ๐Ÿˆฒ \:u7981: Squared Cjk Unified Ideograph-7981 + ^^^^^^01f233% ๐Ÿˆณ \:u7a7a: Squared Cjk Unified Ideograph-7A7A + ^^^^^^01f234% ๐Ÿˆด \:u5408: Squared Cjk Unified Ideograph-5408 + ^^^^^^01f235% ๐Ÿˆต \:u6e80: Squared Cjk Unified Ideograph-6E80 + ^^^^^^01f236% ๐Ÿˆถ \:u6709: Squared Cjk Unified Ideograph-6709 + ^^^^^^01f237% ๐Ÿˆท \:u6708: Squared Cjk Unified Ideograph-6708 + ^^^^^^01f238% ๐Ÿˆธ \:u7533: Squared Cjk Unified Ideograph-7533 + ^^^^^^01f239% ๐Ÿˆน \:u5272: Squared Cjk Unified Ideograph-5272 + ^^^^^^01f23a% ๐Ÿˆบ \:u55b6: Squared Cjk Unified Ideograph-55B6 + ^^^^^^01f250% ๐Ÿ‰ \:ideograph_advantage: Circled Ideograph Advantage + ^^^^^^01f251% ๐Ÿ‰‘ \:accept: Circled Ideograph Accept + ^^^^^^01f300% ๐ŸŒ€ \:cyclone: Cyclone + ^^^^^^01f301% ๐ŸŒ \:foggy: Foggy + ^^^^^^01f302% ๐ŸŒ‚ \:closed_umbrella: Closed Umbrella + ^^^^^^01f303% ๐ŸŒƒ \:night_with_stars: Night With Stars + ^^^^^^01f304% ๐ŸŒ„ \:sunrise_over_mountains: Sunrise Over Mountains + ^^^^^^01f305% ๐ŸŒ… \:sunrise: Sunrise + ^^^^^^01f306% ๐ŸŒ† \:city_sunset: Cityscape At Dusk + ^^^^^^01f307% ๐ŸŒ‡ \:city_sunrise: Sunset Over Buildings + ^^^^^^01f308% ๐ŸŒˆ \:rainbow: Rainbow + ^^^^^^01f309% ๐ŸŒ‰ \:bridge_at_night: Bridge At Night + ^^^^^^01f30a% ๐ŸŒŠ \:ocean: Water Wave + ^^^^^^01f30b% ๐ŸŒ‹ \:volcano: Volcano + ^^^^^^01f30c% ๐ŸŒŒ \:milky_way: Milky Way + ^^^^^^01f30d% ๐ŸŒ \:earth_africa: Earth Globe Europe-Africa + ^^^^^^01f30e% ๐ŸŒŽ \:earth_americas: Earth Globe Americas + ^^^^^^01f30f% ๐ŸŒ \:earth_asia: Earth Globe Asia-Australia + ^^^^^^01f310% ๐ŸŒ \:globe_with_meridians: Globe With Meridians + ^^^^^^01f311% ๐ŸŒ‘ \:new_moon: New Moon Symbol + ^^^^^^01f312% ๐ŸŒ’ \:waxing_crescent_moon: Waxing Crescent Moon Symbol + ^^^^^^01f313% ๐ŸŒ“ \:first_quarter_moon: First Quarter Moon Symbol + ^^^^^^01f314% ๐ŸŒ” \:moon: Waxing Gibbous Moon Symbol + ^^^^^^01f315% ๐ŸŒ• \:full_moon: Full Moon Symbol + ^^^^^^01f316% ๐ŸŒ– \:waning_gibbous_moon: Waning Gibbous Moon Symbol + ^^^^^^01f317% ๐ŸŒ— \:last_quarter_moon: Last Quarter Moon Symbol + ^^^^^^01f318% ๐ŸŒ˜ \:waning_crescent_moon: Waning Crescent Moon Symbol + ^^^^^^01f319% ๐ŸŒ™ \:crescent_moon: Crescent Moon + ^^^^^^01f31a% ๐ŸŒš \:new_moon_with_face: New Moon With Face + ^^^^^^01f31b% ๐ŸŒ› \:first_quarter_moon_with_face: First Quarter Moon With Face + ^^^^^^01f31c% ๐ŸŒœ \:last_quarter_moon_with_face: Last Quarter Moon With Face + ^^^^^^01f31d% ๐ŸŒ \:full_moon_with_face: Full Moon With Face + ^^^^^^01f31e% ๐ŸŒž \:sun_with_face: Sun With Face + ^^^^^^01f31f% ๐ŸŒŸ \:star2: Glowing Star + ^^^^^^01f320% ๐ŸŒ  \:stars: Shooting Star + ^^^^^^01f330% ๐ŸŒฐ \:chestnut: Chestnut + ^^^^^^01f331% ๐ŸŒฑ \:seedling: Seedling + ^^^^^^01f332% ๐ŸŒฒ \:evergreen_tree: Evergreen Tree + ^^^^^^01f333% ๐ŸŒณ \:deciduous_tree: Deciduous Tree + ^^^^^^01f334% ๐ŸŒด \:palm_tree: Palm Tree + ^^^^^^01f335% ๐ŸŒต \:cactus: Cactus + ^^^^^^01f337% ๐ŸŒท \:tulip: Tulip + ^^^^^^01f338% ๐ŸŒธ \:cherry_blossom: Cherry Blossom + ^^^^^^01f339% ๐ŸŒน \:rose: Rose + ^^^^^^01f33a% ๐ŸŒบ \:hibiscus: Hibiscus + ^^^^^^01f33b% ๐ŸŒป \:sunflower: Sunflower + ^^^^^^01f33c% ๐ŸŒผ \:blossom: Blossom + ^^^^^^01f33d% ๐ŸŒฝ \:corn: Ear Of Maize + ^^^^^^01f33e% ๐ŸŒพ \:ear_of_rice: Ear Of Rice + ^^^^^^01f33f% ๐ŸŒฟ \:herb: Herb + ^^^^^^01f340% ๐Ÿ€ \:four_leaf_clover: Four Leaf Clover + ^^^^^^01f341% ๐Ÿ \:maple_leaf: Maple Leaf + ^^^^^^01f342% ๐Ÿ‚ \:fallen_leaf: Fallen Leaf + ^^^^^^01f343% ๐Ÿƒ \:leaves: Leaf Fluttering In Wind + ^^^^^^01f344% ๐Ÿ„ \:mushroom: Mushroom + ^^^^^^01f345% ๐Ÿ… \:tomato: Tomato + ^^^^^^01f346% ๐Ÿ† \:eggplant: Aubergine + ^^^^^^01f347% ๐Ÿ‡ \:grapes: Grapes + ^^^^^^01f348% ๐Ÿˆ \:melon: Melon + ^^^^^^01f349% ๐Ÿ‰ \:watermelon: Watermelon + ^^^^^^01f34a% ๐ŸŠ \:tangerine: Tangerine + ^^^^^^01f34b% ๐Ÿ‹ \:lemon: Lemon + ^^^^^^01f34c% ๐ŸŒ \:banana: Banana + ^^^^^^01f34d% ๐Ÿ \:pineapple: Pineapple + ^^^^^^01f34e% ๐ŸŽ \:apple: Red Apple + ^^^^^^01f34f% ๐Ÿ \:green_apple: Green Apple + ^^^^^^01f350% ๐Ÿ \:pear: Pear + ^^^^^^01f351% ๐Ÿ‘ \:peach: Peach + ^^^^^^01f352% ๐Ÿ’ \:cherries: Cherries + ^^^^^^01f353% ๐Ÿ“ \:strawberry: Strawberry + ^^^^^^01f354% ๐Ÿ” \:hamburger: Hamburger + ^^^^^^01f355% ๐Ÿ• \:pizza: Slice Of Pizza + ^^^^^^01f356% ๐Ÿ– \:meat_on_bone: Meat On Bone + ^^^^^^01f357% ๐Ÿ— \:poultry_leg: Poultry Leg + ^^^^^^01f358% ๐Ÿ˜ \:rice_cracker: Rice Cracker + ^^^^^^01f359% ๐Ÿ™ \:rice_ball: Rice Ball + ^^^^^^01f35a% ๐Ÿš \:rice: Cooked Rice + ^^^^^^01f35b% ๐Ÿ› \:curry: Curry And Rice + ^^^^^^01f35c% ๐Ÿœ \:ramen: Steaming Bowl + ^^^^^^01f35d% ๐Ÿ \:spaghetti: Spaghetti + ^^^^^^01f35e% ๐Ÿž \:bread: Bread + ^^^^^^01f35f% ๐ŸŸ \:fries: French Fries + ^^^^^^01f360% ๐Ÿ  \:sweet_potato: Roasted Sweet Potato + ^^^^^^01f361% ๐Ÿก \:dango: Dango + ^^^^^^01f362% ๐Ÿข \:oden: Oden + ^^^^^^01f363% ๐Ÿฃ \:sushi: Sushi + ^^^^^^01f364% ๐Ÿค \:fried_shrimp: Fried Shrimp + ^^^^^^01f365% ๐Ÿฅ \:fish_cake: Fish Cake With Swirl Design + ^^^^^^01f366% ๐Ÿฆ \:icecream: Soft Ice Cream + ^^^^^^01f367% ๐Ÿง \:shaved_ice: Shaved Ice + ^^^^^^01f368% ๐Ÿจ \:ice_cream: Ice Cream + ^^^^^^01f369% ๐Ÿฉ \:doughnut: Doughnut + ^^^^^^01f36a% ๐Ÿช \:cookie: Cookie + ^^^^^^01f36b% ๐Ÿซ \:chocolate_bar: Chocolate Bar + ^^^^^^01f36c% ๐Ÿฌ \:candy: Candy + ^^^^^^01f36d% ๐Ÿญ \:lollipop: Lollipop + ^^^^^^01f36e% ๐Ÿฎ \:custard: Custard + ^^^^^^01f36f% ๐Ÿฏ \:honey_pot: Honey Pot + ^^^^^^01f370% ๐Ÿฐ \:cake: Shortcake + ^^^^^^01f371% ๐Ÿฑ \:bento: Bento Box + ^^^^^^01f372% ๐Ÿฒ \:stew: Pot Of Food + ^^^^^^01f373% ๐Ÿณ \:egg: Cooking + ^^^^^^01f374% ๐Ÿด \:fork_and_knife: Fork And Knife + ^^^^^^01f375% ๐Ÿต \:tea: Teacup Without Handle + ^^^^^^01f376% ๐Ÿถ \:sake: Sake Bottle And Cup + ^^^^^^01f377% ๐Ÿท \:wine_glass: Wine Glass + ^^^^^^01f378% ๐Ÿธ \:cocktail: Cocktail Glass + ^^^^^^01f379% ๐Ÿน \:tropical_drink: Tropical Drink + ^^^^^^01f37a% ๐Ÿบ \:beer: Beer Mug + ^^^^^^01f37b% ๐Ÿป \:beers: Clinking Beer Mugs + ^^^^^^01f37c% ๐Ÿผ \:baby_bottle: Baby Bottle + ^^^^^^01f380% ๐ŸŽ€ \:ribbon: Ribbon + ^^^^^^01f381% ๐ŸŽ \:gift: Wrapped Present + ^^^^^^01f382% ๐ŸŽ‚ \:birthday: Birthday Cake + ^^^^^^01f383% ๐ŸŽƒ \:jack_o_lantern: Jack-O-Lantern + ^^^^^^01f384% ๐ŸŽ„ \:christmas_tree: Christmas Tree + ^^^^^^01f385% ๐ŸŽ… \:santa: Father Christmas + ^^^^^^01f386% ๐ŸŽ† \:fireworks: Fireworks + ^^^^^^01f387% ๐ŸŽ‡ \:sparkler: Firework Sparkler + ^^^^^^01f388% ๐ŸŽˆ \:balloon: Balloon + ^^^^^^01f389% ๐ŸŽ‰ \:tada: Party Popper + ^^^^^^01f38a% ๐ŸŽŠ \:confetti_ball: Confetti Ball + ^^^^^^01f38b% ๐ŸŽ‹ \:tanabata_tree: Tanabata Tree + ^^^^^^01f38c% ๐ŸŽŒ \:crossed_flags: Crossed Flags + ^^^^^^01f38d% ๐ŸŽ \:bamboo: Pine Decoration + ^^^^^^01f38e% ๐ŸŽŽ \:dolls: Japanese Dolls + ^^^^^^01f38f% ๐ŸŽ \:flags: Carp Streamer + ^^^^^^01f390% ๐ŸŽ \:wind_chime: Wind Chime + ^^^^^^01f391% ๐ŸŽ‘ \:rice_scene: Moon Viewing Ceremony + ^^^^^^01f392% ๐ŸŽ’ \:school_satchel: School Satchel + ^^^^^^01f393% ๐ŸŽ“ \:mortar_board: Graduation Cap + ^^^^^^01f3a0% ๐ŸŽ  \:carousel_horse: Carousel Horse + ^^^^^^01f3a1% ๐ŸŽก \:ferris_wheel: Ferris Wheel + ^^^^^^01f3a2% ๐ŸŽข \:roller_coaster: Roller Coaster + ^^^^^^01f3a3% ๐ŸŽฃ \:fishing_pole_and_fish: Fishing Pole And Fish + ^^^^^^01f3a4% ๐ŸŽค \:microphone: Microphone + ^^^^^^01f3a5% ๐ŸŽฅ \:movie_camera: Movie Camera + ^^^^^^01f3a6% ๐ŸŽฆ \:cinema: Cinema + ^^^^^^01f3a7% ๐ŸŽง \:headphones: Headphone + ^^^^^^01f3a8% ๐ŸŽจ \:art: Artist Palette + ^^^^^^01f3a9% ๐ŸŽฉ \:tophat: Top Hat + ^^^^^^01f3aa% ๐ŸŽช \:circus_tent: Circus Tent + ^^^^^^01f3ab% ๐ŸŽซ \:ticket: Ticket + ^^^^^^01f3ac% ๐ŸŽฌ \:clapper: Clapper Board + ^^^^^^01f3ad% ๐ŸŽญ \:performing_arts: Performing Arts + ^^^^^^01f3ae% ๐ŸŽฎ \:video_game: Video Game + ^^^^^^01f3af% ๐ŸŽฏ \:dart: Direct Hit + ^^^^^^01f3b0% ๐ŸŽฐ \:slot_machine: Slot Machine + ^^^^^^01f3b1% ๐ŸŽฑ \:8ball: Billiards + ^^^^^^01f3b2% ๐ŸŽฒ \:game_die: Game Die + ^^^^^^01f3b3% ๐ŸŽณ \:bowling: Bowling + ^^^^^^01f3b4% ๐ŸŽด \:flower_playing_cards: Flower Playing Cards + ^^^^^^01f3b5% ๐ŸŽต \:musical_note: Musical Note + ^^^^^^01f3b6% ๐ŸŽถ \:notes: Multiple Musical Notes + ^^^^^^01f3b7% ๐ŸŽท \:saxophone: Saxophone + ^^^^^^01f3b8% ๐ŸŽธ \:guitar: Guitar + ^^^^^^01f3b9% ๐ŸŽน \:musical_keyboard: Musical Keyboard + ^^^^^^01f3ba% ๐ŸŽบ \:trumpet: Trumpet + ^^^^^^01f3bb% ๐ŸŽป \:violin: Violin + ^^^^^^01f3bc% ๐ŸŽผ \:musical_score: Musical Score + ^^^^^^01f3bd% ๐ŸŽฝ \:running_shirt_with_sash: Running Shirt With Sash + ^^^^^^01f3be% ๐ŸŽพ \:tennis: Tennis Racquet And Ball + ^^^^^^01f3bf% ๐ŸŽฟ \:ski: Ski And Ski Boot + ^^^^^^01f3c0% ๐Ÿ€ \:basketball: Basketball And Hoop + ^^^^^^01f3c1% ๐Ÿ \:checkered_flag: Chequered Flag + ^^^^^^01f3c2% ๐Ÿ‚ \:snowboarder: Snowboarder + ^^^^^^01f3c3% ๐Ÿƒ \:runner: Runner + ^^^^^^01f3c4% ๐Ÿ„ \:surfer: Surfer + ^^^^^^01f3c6% ๐Ÿ† \:trophy: Trophy + ^^^^^^01f3c7% ๐Ÿ‡ \:horse_racing: Horse Racing + ^^^^^^01f3c8% ๐Ÿˆ \:football: American Football + ^^^^^^01f3c9% ๐Ÿ‰ \:rugby_football: Rugby Football + ^^^^^^01f3ca% ๐ŸŠ \:swimmer: Swimmer + ^^^^^^01f3e0% ๐Ÿ  \:house: House Building + ^^^^^^01f3e1% ๐Ÿก \:house_with_garden: House With Garden + ^^^^^^01f3e2% ๐Ÿข \:office: Office Building + ^^^^^^01f3e3% ๐Ÿฃ \:post_office: Japanese Post Office + ^^^^^^01f3e4% ๐Ÿค \:european_post_office: European Post Office + ^^^^^^01f3e5% ๐Ÿฅ \:hospital: Hospital + ^^^^^^01f3e6% ๐Ÿฆ \:bank: Bank + ^^^^^^01f3e7% ๐Ÿง \:atm: Automated Teller Machine + ^^^^^^01f3e8% ๐Ÿจ \:hotel: Hotel + ^^^^^^01f3e9% ๐Ÿฉ \:love_hotel: Love Hotel + ^^^^^^01f3ea% ๐Ÿช \:convenience_store: Convenience Store + ^^^^^^01f3eb% ๐Ÿซ \:school: School + ^^^^^^01f3ec% ๐Ÿฌ \:department_store: Department Store + ^^^^^^01f3ed% ๐Ÿญ \:factory: Factory + ^^^^^^01f3ee% ๐Ÿฎ \:izakaya_lantern: Izakaya Lantern + ^^^^^^01f3ef% ๐Ÿฏ \:japanese_castle: Japanese Castle + ^^^^^^01f3f0% ๐Ÿฐ \:european_castle: European Castle + ^^^^^^01f3fb% ๐Ÿป \:skin-tone-2: Emoji Modifier Fitzpatrick Type-1-2 + ^^^^^^01f3fc% ๐Ÿผ \:skin-tone-3: Emoji Modifier Fitzpatrick Type-3 + ^^^^^^01f3fd% ๐Ÿฝ \:skin-tone-4: Emoji Modifier Fitzpatrick Type-4 + ^^^^^^01f3fe% ๐Ÿพ \:skin-tone-5: Emoji Modifier Fitzpatrick Type-5 + ^^^^^^01f3ff% ๐Ÿฟ \:skin-tone-6: Emoji Modifier Fitzpatrick Type-6 + ^^^^^^01f400% ๐Ÿ€ \:rat: Rat + ^^^^^^01f401% ๐Ÿ \:mouse2: Mouse + ^^^^^^01f402% ๐Ÿ‚ \:ox: Ox + ^^^^^^01f403% ๐Ÿƒ \:water_buffalo: Water Buffalo + ^^^^^^01f404% ๐Ÿ„ \:cow2: Cow + ^^^^^^01f405% ๐Ÿ… \:tiger2: Tiger + ^^^^^^01f406% ๐Ÿ† \:leopard: Leopard + ^^^^^^01f407% ๐Ÿ‡ \:rabbit2: Rabbit + ^^^^^^01f408% ๐Ÿˆ \:cat2: Cat + ^^^^^^01f409% ๐Ÿ‰ \:dragon: Dragon + ^^^^^^01f40a% ๐ŸŠ \:crocodile: Crocodile + ^^^^^^01f40b% ๐Ÿ‹ \:whale2: Whale + ^^^^^^01f40c% ๐ŸŒ \:snail: Snail + ^^^^^^01f40d% ๐Ÿ \:snake: Snake + ^^^^^^01f40e% ๐ŸŽ \:racehorse: Horse + ^^^^^^01f40f% ๐Ÿ \:ram: Ram + ^^^^^^01f410% ๐Ÿ \:goat: Goat + ^^^^^^01f411% ๐Ÿ‘ \:sheep: Sheep + ^^^^^^01f412% ๐Ÿ’ \:monkey: Monkey + ^^^^^^01f413% ๐Ÿ“ \:rooster: Rooster + ^^^^^^01f414% ๐Ÿ” \:chicken: Chicken + ^^^^^^01f415% ๐Ÿ• \:dog2: Dog + ^^^^^^01f416% ๐Ÿ– \:pig2: Pig + ^^^^^^01f417% ๐Ÿ— \:boar: Boar + ^^^^^^01f418% ๐Ÿ˜ \:elephant: Elephant + ^^^^^^01f419% ๐Ÿ™ \:octopus: Octopus + ^^^^^^01f41a% ๐Ÿš \:shell: Spiral Shell + ^^^^^^01f41b% ๐Ÿ› \:bug: Bug + ^^^^^^01f41c% ๐Ÿœ \:ant: Ant + ^^^^^^01f41d% ๐Ÿ \:bee: Honeybee + ^^^^^^01f41e% ๐Ÿž \:beetle: Lady Beetle + ^^^^^^01f41f% ๐ŸŸ \:fish: Fish + ^^^^^^01f420% ๐Ÿ  \:tropical_fish: Tropical Fish + ^^^^^^01f421% ๐Ÿก \:blowfish: Blowfish + ^^^^^^01f422% ๐Ÿข \:turtle: Turtle + ^^^^^^01f423% ๐Ÿฃ \:hatching_chick: Hatching Chick + ^^^^^^01f424% ๐Ÿค \:baby_chick: Baby Chick + ^^^^^^01f425% ๐Ÿฅ \:hatched_chick: Front-Facing Baby Chick + ^^^^^^01f426% ๐Ÿฆ \:bird: Bird + ^^^^^^01f427% ๐Ÿง \:penguin: Penguin + ^^^^^^01f428% ๐Ÿจ \:koala: Koala + ^^^^^^01f429% ๐Ÿฉ \:poodle: Poodle + ^^^^^^01f42a% ๐Ÿช \:dromedary_camel: Dromedary Camel + ^^^^^^01f42b% ๐Ÿซ \:camel: Bactrian Camel + ^^^^^^01f42c% ๐Ÿฌ \:dolphin: Dolphin + ^^^^^^01f42d% ๐Ÿญ \:mouse: Mouse Face + ^^^^^^01f42e% ๐Ÿฎ \:cow: Cow Face + ^^^^^^01f42f% ๐Ÿฏ \:tiger: Tiger Face + ^^^^^^01f430% ๐Ÿฐ \:rabbit: Rabbit Face + ^^^^^^01f431% ๐Ÿฑ \:cat: Cat Face + ^^^^^^01f432% ๐Ÿฒ \:dragon_face: Dragon Face + ^^^^^^01f433% ๐Ÿณ \:whale: Spouting Whale + ^^^^^^01f434% ๐Ÿด \:horse: Horse Face + ^^^^^^01f435% ๐Ÿต \:monkey_face: Monkey Face + ^^^^^^01f436% ๐Ÿถ \:dog: Dog Face + ^^^^^^01f437% ๐Ÿท \:pig: Pig Face + ^^^^^^01f438% ๐Ÿธ \:frog: Frog Face + ^^^^^^01f439% ๐Ÿน \:hamster: Hamster Face + ^^^^^^01f43a% ๐Ÿบ \:wolf: Wolf Face + ^^^^^^01f43b% ๐Ÿป \:bear: Bear Face + ^^^^^^01f43c% ๐Ÿผ \:panda_face: Panda Face + ^^^^^^01f43d% ๐Ÿฝ \:pig_nose: Pig Nose + ^^^^^^01f43e% ๐Ÿพ \:feet: Paw Prints + ^^^^^^01f440% ๐Ÿ‘€ \:eyes: Eyes + ^^^^^^01f442% ๐Ÿ‘‚ \:ear: Ear + ^^^^^^01f443% ๐Ÿ‘ƒ \:nose: Nose + ^^^^^^01f444% ๐Ÿ‘„ \:lips: Mouth + ^^^^^^01f445% ๐Ÿ‘… \:tongue: Tongue + ^^^^^^01f446% ๐Ÿ‘† \:point_up_2: White Up Pointing Backhand Index + ^^^^^^01f447% ๐Ÿ‘‡ \:point_down: White Down Pointing Backhand Index + ^^^^^^01f448% ๐Ÿ‘ˆ \:point_left: White Left Pointing Backhand Index + ^^^^^^01f449% ๐Ÿ‘‰ \:point_right: White Right Pointing Backhand Index + ^^^^^^01f44a% ๐Ÿ‘Š \:facepunch: Fisted Hand Sign + ^^^^^^01f44b% ๐Ÿ‘‹ \:wave: Waving Hand Sign + ^^^^^^01f44c% ๐Ÿ‘Œ \:ok_hand: Ok Hand Sign + ^^^^^^01f44d% ๐Ÿ‘ \:+1: Thumbs Up Sign + ^^^^^^01f44e% ๐Ÿ‘Ž \:-1: Thumbs Down Sign + ^^^^^^01f44f% ๐Ÿ‘ \:clap: Clapping Hands Sign + ^^^^^^01f450% ๐Ÿ‘ \:open_hands: Open Hands Sign + ^^^^^^01f451% ๐Ÿ‘‘ \:crown: Crown + ^^^^^^01f452% ๐Ÿ‘’ \:womans_hat: Womans Hat + ^^^^^^01f453% ๐Ÿ‘“ \:eyeglasses: Eyeglasses + ^^^^^^01f454% ๐Ÿ‘” \:necktie: Necktie + ^^^^^^01f455% ๐Ÿ‘• \:shirt: T-Shirt + ^^^^^^01f456% ๐Ÿ‘– \:jeans: Jeans + ^^^^^^01f457% ๐Ÿ‘— \:dress: Dress + ^^^^^^01f458% ๐Ÿ‘˜ \:kimono: Kimono + ^^^^^^01f459% ๐Ÿ‘™ \:bikini: Bikini + ^^^^^^01f45a% ๐Ÿ‘š \:womans_clothes: Womans Clothes + ^^^^^^01f45b% ๐Ÿ‘› \:purse: Purse + ^^^^^^01f45c% ๐Ÿ‘œ \:handbag: Handbag + ^^^^^^01f45d% ๐Ÿ‘ \:pouch: Pouch + ^^^^^^01f45e% ๐Ÿ‘ž \:mans_shoe: Mans Shoe + ^^^^^^01f45f% ๐Ÿ‘Ÿ \:athletic_shoe: Athletic Shoe + ^^^^^^01f460% ๐Ÿ‘  \:high_heel: High-Heeled Shoe + ^^^^^^01f461% ๐Ÿ‘ก \:sandal: Womans Sandal + ^^^^^^01f462% ๐Ÿ‘ข \:boot: Womans Boots + ^^^^^^01f463% ๐Ÿ‘ฃ \:footprints: Footprints + ^^^^^^01f464% ๐Ÿ‘ค \:bust_in_silhouette: Bust In Silhouette + ^^^^^^01f465% ๐Ÿ‘ฅ \:busts_in_silhouette: Busts In Silhouette + ^^^^^^01f466% ๐Ÿ‘ฆ \:boy: Boy + ^^^^^^01f467% ๐Ÿ‘ง \:girl: Girl + ^^^^^^01f468% ๐Ÿ‘จ \:man: Man + ^^^^^^01f469% ๐Ÿ‘ฉ \:woman: Woman + ^^^^^^01f46a% ๐Ÿ‘ช \:family: Family + ^^^^^^01f46b% ๐Ÿ‘ซ \:couple: Man And Woman Holding Hands + ^^^^^^01f46c% ๐Ÿ‘ฌ \:two_men_holding_hands: Two Men Holding Hands + ^^^^^^01f46d% ๐Ÿ‘ญ \:two_women_holding_hands: Two Women Holding Hands + ^^^^^^01f46e% ๐Ÿ‘ฎ \:cop: Police Officer + ^^^^^^01f46f% ๐Ÿ‘ฏ \:dancers: Woman With Bunny Ears + ^^^^^^01f470% ๐Ÿ‘ฐ \:bride_with_veil: Bride With Veil + ^^^^^^01f471% ๐Ÿ‘ฑ \:person_with_blond_hair: Person With Blond Hair + ^^^^^^01f472% ๐Ÿ‘ฒ \:man_with_gua_pi_mao: Man With Gua Pi Mao + ^^^^^^01f473% ๐Ÿ‘ณ \:man_with_turban: Man With Turban + ^^^^^^01f474% ๐Ÿ‘ด \:older_man: Older Man + ^^^^^^01f475% ๐Ÿ‘ต \:older_woman: Older Woman + ^^^^^^01f476% ๐Ÿ‘ถ \:baby: Baby + ^^^^^^01f477% ๐Ÿ‘ท \:construction_worker: Construction Worker + ^^^^^^01f478% ๐Ÿ‘ธ \:princess: Princess + ^^^^^^01f479% ๐Ÿ‘น \:japanese_ogre: Japanese Ogre + ^^^^^^01f47a% ๐Ÿ‘บ \:japanese_goblin: Japanese Goblin + ^^^^^^01f47b% ๐Ÿ‘ป \:ghost: Ghost + ^^^^^^01f47c% ๐Ÿ‘ผ \:angel: Baby Angel + ^^^^^^01f47d% ๐Ÿ‘ฝ \:alien: Extraterrestrial Alien + ^^^^^^01f47e% ๐Ÿ‘พ \:space_invader: Alien Monster + ^^^^^^01f47f% ๐Ÿ‘ฟ \:imp: Imp + ^^^^^^01f480% ๐Ÿ’€ \:skull: Skull + ^^^^^^01f481% ๐Ÿ’ \:information_desk_person: Information Desk Person + ^^^^^^01f482% ๐Ÿ’‚ \:guardsman: Guardsman + ^^^^^^01f483% ๐Ÿ’ƒ \:dancer: Dancer + ^^^^^^01f484% ๐Ÿ’„ \:lipstick: Lipstick + ^^^^^^01f485% ๐Ÿ’… \:nail_care: Nail Polish + ^^^^^^01f486% ๐Ÿ’† \:massage: Face Massage + ^^^^^^01f487% ๐Ÿ’‡ \:haircut: Haircut + ^^^^^^01f488% ๐Ÿ’ˆ \:barber: Barber Pole + ^^^^^^01f489% ๐Ÿ’‰ \:syringe: Syringe + ^^^^^^01f48a% ๐Ÿ’Š \:pill: Pill + ^^^^^^01f48b% ๐Ÿ’‹ \:kiss: Kiss Mark + ^^^^^^01f48c% ๐Ÿ’Œ \:love_letter: Love Letter + ^^^^^^01f48d% ๐Ÿ’ \:ring: Ring + ^^^^^^01f48e% ๐Ÿ’Ž \:gem: Gem Stone + ^^^^^^01f48f% ๐Ÿ’ \:couplekiss: Kiss + ^^^^^^01f490% ๐Ÿ’ \:bouquet: Bouquet + ^^^^^^01f491% ๐Ÿ’‘ \:couple_with_heart: Couple With Heart + ^^^^^^01f492% ๐Ÿ’’ \:wedding: Wedding + ^^^^^^01f493% ๐Ÿ’“ \:heartbeat: Beating Heart + ^^^^^^01f494% ๐Ÿ’” \:broken_heart: Broken Heart + ^^^^^^01f495% ๐Ÿ’• \:two_hearts: Two Hearts + ^^^^^^01f496% ๐Ÿ’– \:sparkling_heart: Sparkling Heart + ^^^^^^01f497% ๐Ÿ’— \:heartpulse: Growing Heart + ^^^^^^01f498% ๐Ÿ’˜ \:cupid: Heart With Arrow + ^^^^^^01f499% ๐Ÿ’™ \:blue_heart: Blue Heart + ^^^^^^01f49a% ๐Ÿ’š \:green_heart: Green Heart + ^^^^^^01f49b% ๐Ÿ’› \:yellow_heart: Yellow Heart + ^^^^^^01f49c% ๐Ÿ’œ \:purple_heart: Purple Heart + ^^^^^^01f49d% ๐Ÿ’ \:gift_heart: Heart With Ribbon + ^^^^^^01f49e% ๐Ÿ’ž \:revolving_hearts: Revolving Hearts + ^^^^^^01f49f% ๐Ÿ’Ÿ \:heart_decoration: Heart Decoration + ^^^^^^01f4a0% ๐Ÿ’  \:diamond_shape_with_a_dot_inside: Diamond Shape With A Dot Inside + ^^^^^^01f4a1% ๐Ÿ’ก \:bulb: Electric Light Bulb + ^^^^^^01f4a2% ๐Ÿ’ข \:anger: Anger Symbol + ^^^^^^01f4a3% ๐Ÿ’ฃ \:bomb: Bomb + ^^^^^^01f4a4% ๐Ÿ’ค \:zzz: Sleeping Symbol + ^^^^^^01f4a5% ๐Ÿ’ฅ \:boom: Collision Symbol + ^^^^^^01f4a6% ๐Ÿ’ฆ \:sweat_drops: Splashing Sweat Symbol + ^^^^^^01f4a7% ๐Ÿ’ง \:droplet: Droplet + ^^^^^^01f4a8% ๐Ÿ’จ \:dash: Dash Symbol + ^^^^^^01f4a9% ๐Ÿ’ฉ \:hankey: Pile Of Poo + ^^^^^^01f4aa% ๐Ÿ’ช \:muscle: Flexed Biceps + ^^^^^^01f4ab% ๐Ÿ’ซ \:dizzy: Dizzy Symbol + ^^^^^^01f4ac% ๐Ÿ’ฌ \:speech_balloon: Speech Balloon + ^^^^^^01f4ad% ๐Ÿ’ญ \:thought_balloon: Thought Balloon + ^^^^^^01f4ae% ๐Ÿ’ฎ \:white_flower: White Flower + ^^^^^^01f4af% ๐Ÿ’ฏ \:100: Hundred Points Symbol + ^^^^^^01f4b0% ๐Ÿ’ฐ \:moneybag: Money Bag + ^^^^^^01f4b1% ๐Ÿ’ฑ \:currency_exchange: Currency Exchange + ^^^^^^01f4b2% ๐Ÿ’ฒ \:heavy_dollar_sign: Heavy Dollar Sign + ^^^^^^01f4b3% ๐Ÿ’ณ \:credit_card: Credit Card + ^^^^^^01f4b4% ๐Ÿ’ด \:yen: Banknote With Yen Sign + ^^^^^^01f4b5% ๐Ÿ’ต \:dollar: Banknote With Dollar Sign + ^^^^^^01f4b6% ๐Ÿ’ถ \:euro: Banknote With Euro Sign + ^^^^^^01f4b7% ๐Ÿ’ท \:pound: Banknote With Pound Sign + ^^^^^^01f4b8% ๐Ÿ’ธ \:money_with_wings: Money With Wings + ^^^^^^01f4b9% ๐Ÿ’น \:chart: Chart With Upwards Trend And Yen Sign + ^^^^^^01f4ba% ๐Ÿ’บ \:seat: Seat + ^^^^^^01f4bb% ๐Ÿ’ป \:computer: Personal Computer + ^^^^^^01f4bc% ๐Ÿ’ผ \:briefcase: Briefcase + ^^^^^^01f4bd% ๐Ÿ’ฝ \:minidisc: Minidisc + ^^^^^^01f4be% ๐Ÿ’พ \:floppy_disk: Floppy Disk + ^^^^^^01f4bf% ๐Ÿ’ฟ \:cd: Optical Disc + ^^^^^^01f4c0% ๐Ÿ“€ \:dvd: Dvd + ^^^^^^01f4c1% ๐Ÿ“ \:file_folder: File Folder + ^^^^^^01f4c2% ๐Ÿ“‚ \:open_file_folder: Open File Folder + ^^^^^^01f4c3% ๐Ÿ“ƒ \:page_with_curl: Page With Curl + ^^^^^^01f4c4% ๐Ÿ“„ \:page_facing_up: Page Facing Up + ^^^^^^01f4c5% ๐Ÿ“… \:date: Calendar + ^^^^^^01f4c6% ๐Ÿ“† \:calendar: Tear-Off Calendar + ^^^^^^01f4c7% ๐Ÿ“‡ \:card_index: Card Index + ^^^^^^01f4c8% ๐Ÿ“ˆ \:chart_with_upwards_trend: Chart With Upwards Trend + ^^^^^^01f4c9% ๐Ÿ“‰ \:chart_with_downwards_trend: Chart With Downwards Trend + ^^^^^^01f4ca% ๐Ÿ“Š \:bar_chart: Bar Chart + ^^^^^^01f4cb% ๐Ÿ“‹ \:clipboard: Clipboard + ^^^^^^01f4cc% ๐Ÿ“Œ \:pushpin: Pushpin + ^^^^^^01f4cd% ๐Ÿ“ \:round_pushpin: Round Pushpin + ^^^^^^01f4ce% ๐Ÿ“Ž \:paperclip: Paperclip + ^^^^^^01f4cf% ๐Ÿ“ \:straight_ruler: Straight Ruler + ^^^^^^01f4d0% ๐Ÿ“ \:triangular_ruler: Triangular Ruler + ^^^^^^01f4d1% ๐Ÿ“‘ \:bookmark_tabs: Bookmark Tabs + ^^^^^^01f4d2% ๐Ÿ“’ \:ledger: Ledger + ^^^^^^01f4d3% ๐Ÿ““ \:notebook: Notebook + ^^^^^^01f4d4% ๐Ÿ“” \:notebook_with_decorative_cover: Notebook With Decorative Cover + ^^^^^^01f4d5% ๐Ÿ“• \:closed_book: Closed Book + ^^^^^^01f4d6% ๐Ÿ“– \:book: Open Book + ^^^^^^01f4d7% ๐Ÿ“— \:green_book: Green Book + ^^^^^^01f4d8% ๐Ÿ“˜ \:blue_book: Blue Book + ^^^^^^01f4d9% ๐Ÿ“™ \:orange_book: Orange Book + ^^^^^^01f4da% ๐Ÿ“š \:books: Books + ^^^^^^01f4db% ๐Ÿ“› \:name_badge: Name Badge + ^^^^^^01f4dc% ๐Ÿ“œ \:scroll: Scroll + ^^^^^^01f4dd% ๐Ÿ“ \:memo: Memo + ^^^^^^01f4de% ๐Ÿ“ž \:telephone_receiver: Telephone Receiver + ^^^^^^01f4df% ๐Ÿ“Ÿ \:pager: Pager + ^^^^^^01f4e0% ๐Ÿ“  \:fax: Fax Machine + ^^^^^^01f4e1% ๐Ÿ“ก \:satellite: Satellite Antenna + ^^^^^^01f4e2% ๐Ÿ“ข \:loudspeaker: Public Address Loudspeaker + ^^^^^^01f4e3% ๐Ÿ“ฃ \:mega: Cheering Megaphone + ^^^^^^01f4e4% ๐Ÿ“ค \:outbox_tray: Outbox Tray + ^^^^^^01f4e5% ๐Ÿ“ฅ \:inbox_tray: Inbox Tray + ^^^^^^01f4e6% ๐Ÿ“ฆ \:package: Package + ^^^^^^01f4e7% ๐Ÿ“ง \:e-mail: E-Mail Symbol + ^^^^^^01f4e8% ๐Ÿ“จ \:incoming_envelope: Incoming Envelope + ^^^^^^01f4e9% ๐Ÿ“ฉ \:envelope_with_arrow: Envelope With Downwards Arrow Above + ^^^^^^01f4ea% ๐Ÿ“ช \:mailbox_closed: Closed Mailbox With Lowered Flag + ^^^^^^01f4eb% ๐Ÿ“ซ \:mailbox: Closed Mailbox With Raised Flag + ^^^^^^01f4ec% ๐Ÿ“ฌ \:mailbox_with_mail: Open Mailbox With Raised Flag + ^^^^^^01f4ed% ๐Ÿ“ญ \:mailbox_with_no_mail: Open Mailbox With Lowered Flag + ^^^^^^01f4ee% ๐Ÿ“ฎ \:postbox: Postbox + ^^^^^^01f4ef% ๐Ÿ“ฏ \:postal_horn: Postal Horn + ^^^^^^01f4f0% ๐Ÿ“ฐ \:newspaper: Newspaper + ^^^^^^01f4f1% ๐Ÿ“ฑ \:iphone: Mobile Phone + ^^^^^^01f4f2% ๐Ÿ“ฒ \:calling: Mobile Phone With Rightwards Arrow At Left + ^^^^^^01f4f3% ๐Ÿ“ณ \:vibration_mode: Vibration Mode + ^^^^^^01f4f4% ๐Ÿ“ด \:mobile_phone_off: Mobile Phone Off + ^^^^^^01f4f5% ๐Ÿ“ต \:no_mobile_phones: No Mobile Phones + ^^^^^^01f4f6% ๐Ÿ“ถ \:signal_strength: Antenna With Bars + ^^^^^^01f4f7% ๐Ÿ“ท \:camera: Camera + ^^^^^^01f4f9% ๐Ÿ“น \:video_camera: Video Camera + ^^^^^^01f4fa% ๐Ÿ“บ \:tv: Television + ^^^^^^01f4fb% ๐Ÿ“ป \:radio: Radio + ^^^^^^01f4fc% ๐Ÿ“ผ \:vhs: Videocassette + ^^^^^^01f500% ๐Ÿ”€ \:twisted_rightwards_arrows: Twisted Rightwards Arrows + ^^^^^^01f501% ๐Ÿ” \:repeat: Clockwise Rightwards And Leftwards Open Circle Arrows + ^^^^^^01f502% ๐Ÿ”‚ \:repeat_one: Clockwise Rightwards And Leftwards Open Circle Arrows With Circled One Overlay + ^^^^^^01f503% ๐Ÿ”ƒ \:arrows_clockwise: Clockwise Downwards And Upwards Open Circle Arrows + ^^^^^^01f504% ๐Ÿ”„ \:arrows_counterclockwise: Anticlockwise Downwards And Upwards Open Circle Arrows + ^^^^^^01f505% ๐Ÿ”… \:low_brightness: Low Brightness Symbol + ^^^^^^01f506% ๐Ÿ”† \:high_brightness: High Brightness Symbol + ^^^^^^01f507% ๐Ÿ”‡ \:mute: Speaker With Cancellation Stroke + ^^^^^^01f508% ๐Ÿ”ˆ \:speaker: Speaker + ^^^^^^01f509% ๐Ÿ”‰ \:sound: Speaker With One Sound Wave + ^^^^^^01f50a% ๐Ÿ”Š \:loud_sound: Speaker With Three Sound Waves + ^^^^^^01f50b% ๐Ÿ”‹ \:battery: Battery + ^^^^^^01f50c% ๐Ÿ”Œ \:electric_plug: Electric Plug + ^^^^^^01f50d% ๐Ÿ” \:mag: Left-Pointing Magnifying Glass + ^^^^^^01f50e% ๐Ÿ”Ž \:mag_right: Right-Pointing Magnifying Glass + ^^^^^^01f50f% ๐Ÿ” \:lock_with_ink_pen: Lock With Ink Pen + ^^^^^^01f510% ๐Ÿ” \:closed_lock_with_key: Closed Lock With Key + ^^^^^^01f511% ๐Ÿ”‘ \:key: Key + ^^^^^^01f512% ๐Ÿ”’ \:lock: Lock + ^^^^^^01f513% ๐Ÿ”“ \:unlock: Open Lock + ^^^^^^01f514% ๐Ÿ”” \:bell: Bell + ^^^^^^01f515% ๐Ÿ”• \:no_bell: Bell With Cancellation Stroke + ^^^^^^01f516% ๐Ÿ”– \:bookmark: Bookmark + ^^^^^^01f517% ๐Ÿ”— \:link: Link Symbol + ^^^^^^01f518% ๐Ÿ”˜ \:radio_button: Radio Button + ^^^^^^01f519% ๐Ÿ”™ \:back: Back With Leftwards Arrow Above + ^^^^^^01f51a% ๐Ÿ”š \:end: End With Leftwards Arrow Above + ^^^^^^01f51b% ๐Ÿ”› \:on: On With Exclamation Mark With Left Right Arrow Above + ^^^^^^01f51c% ๐Ÿ”œ \:soon: Soon With Rightwards Arrow Above + ^^^^^^01f51d% ๐Ÿ” \:top: Top With Upwards Arrow Above + ^^^^^^01f51e% ๐Ÿ”ž \:underage: No One Under Eighteen Symbol + ^^^^^^01f51f% ๐Ÿ”Ÿ \:keycap_ten: Keycap Ten + ^^^^^^01f520% ๐Ÿ”  \:capital_abcd: Input Symbol For Latin Capital Letters + ^^^^^^01f521% ๐Ÿ”ก \:abcd: Input Symbol For Latin Small Letters + ^^^^^^01f522% ๐Ÿ”ข \:1234: Input Symbol For Numbers + ^^^^^^01f523% ๐Ÿ”ฃ \:symbols: Input Symbol For Symbols + ^^^^^^01f524% ๐Ÿ”ค \:abc: Input Symbol For Latin Letters + ^^^^^^01f525% ๐Ÿ”ฅ \:fire: Fire + ^^^^^^01f526% ๐Ÿ”ฆ \:flashlight: Electric Torch + ^^^^^^01f527% ๐Ÿ”ง \:wrench: Wrench + ^^^^^^01f528% ๐Ÿ”จ \:hammer: Hammer + ^^^^^^01f529% ๐Ÿ”ฉ \:nut_and_bolt: Nut And Bolt + ^^^^^^01f52a% ๐Ÿ”ช \:hocho: Hocho + ^^^^^^01f52b% ๐Ÿ”ซ \:gun: Pistol + ^^^^^^01f52c% ๐Ÿ”ฌ \:microscope: Microscope + ^^^^^^01f52d% ๐Ÿ”ญ \:telescope: Telescope + ^^^^^^01f52e% ๐Ÿ”ฎ \:crystal_ball: Crystal Ball + ^^^^^^01f52f% ๐Ÿ”ฏ \:six_pointed_star: Six Pointed Star With Middle Dot + ^^^^^^01f530% ๐Ÿ”ฐ \:beginner: Japanese Symbol For Beginner + ^^^^^^01f531% ๐Ÿ”ฑ \:trident: Trident Emblem + ^^^^^^01f532% ๐Ÿ”ฒ \:black_square_button: Black Square Button + ^^^^^^01f533% ๐Ÿ”ณ \:white_square_button: White Square Button + ^^^^^^01f534% ๐Ÿ”ด \:red_circle: Large Red Circle + ^^^^^^01f535% ๐Ÿ”ต \:large_blue_circle: Large Blue Circle + ^^^^^^01f536% ๐Ÿ”ถ \:large_orange_diamond: Large Orange Diamond + ^^^^^^01f537% ๐Ÿ”ท \:large_blue_diamond: Large Blue Diamond + ^^^^^^01f538% ๐Ÿ”ธ \:small_orange_diamond: Small Orange Diamond + ^^^^^^01f539% ๐Ÿ”น \:small_blue_diamond: Small Blue Diamond + ^^^^^^01f53a% ๐Ÿ”บ \:small_red_triangle: Up-Pointing Red Triangle + ^^^^^^01f53b% ๐Ÿ”ป \:small_red_triangle_down: Down-Pointing Red Triangle + ^^^^^^01f53c% ๐Ÿ”ผ \:arrow_up_small: Up-Pointing Small Red Triangle + ^^^^^^01f53d% ๐Ÿ”ฝ \:arrow_down_small: Down-Pointing Small Red Triangle + ^^^^^^01f550% ๐Ÿ• \:clock1: Clock Face One Oclock + ^^^^^^01f551% ๐Ÿ•‘ \:clock2: Clock Face Two Oclock + ^^^^^^01f552% ๐Ÿ•’ \:clock3: Clock Face Three Oclock + ^^^^^^01f553% ๐Ÿ•“ \:clock4: Clock Face Four Oclock + ^^^^^^01f554% ๐Ÿ•” \:clock5: Clock Face Five Oclock + ^^^^^^01f555% ๐Ÿ•• \:clock6: Clock Face Six Oclock + ^^^^^^01f556% ๐Ÿ•– \:clock7: Clock Face Seven Oclock + ^^^^^^01f557% ๐Ÿ•— \:clock8: Clock Face Eight Oclock + ^^^^^^01f558% ๐Ÿ•˜ \:clock9: Clock Face Nine Oclock + ^^^^^^01f559% ๐Ÿ•™ \:clock10: Clock Face Ten Oclock + ^^^^^^01f55a% ๐Ÿ•š \:clock11: Clock Face Eleven Oclock + ^^^^^^01f55b% ๐Ÿ•› \:clock12: Clock Face Twelve Oclock + ^^^^^^01f55c% ๐Ÿ•œ \:clock130: Clock Face One-Thirty + ^^^^^^01f55d% ๐Ÿ• \:clock230: Clock Face Two-Thirty + ^^^^^^01f55e% ๐Ÿ•ž \:clock330: Clock Face Three-Thirty + ^^^^^^01f55f% ๐Ÿ•Ÿ \:clock430: Clock Face Four-Thirty + ^^^^^^01f560% ๐Ÿ•  \:clock530: Clock Face Five-Thirty + ^^^^^^01f561% ๐Ÿ•ก \:clock630: Clock Face Six-Thirty + ^^^^^^01f562% ๐Ÿ•ข \:clock730: Clock Face Seven-Thirty + ^^^^^^01f563% ๐Ÿ•ฃ \:clock830: Clock Face Eight-Thirty + ^^^^^^01f564% ๐Ÿ•ค \:clock930: Clock Face Nine-Thirty + ^^^^^^01f565% ๐Ÿ•ฅ \:clock1030: Clock Face Ten-Thirty + ^^^^^^01f566% ๐Ÿ•ฆ \:clock1130: Clock Face Eleven-Thirty + ^^^^^^01f567% ๐Ÿ•ง \:clock1230: Clock Face Twelve-Thirty + ^^^^^^01f5fb% ๐Ÿ—ป \:mount_fuji: Mount Fuji + ^^^^^^01f5fc% ๐Ÿ—ผ \:tokyo_tower: Tokyo Tower + ^^^^^^01f5fd% ๐Ÿ—ฝ \:statue_of_liberty: Statue Of Liberty + ^^^^^^01f5fe% ๐Ÿ—พ \:japan: Silhouette Of Japan + ^^^^^^01f5ff% ๐Ÿ—ฟ \:moyai: Moyai + ^^^^^^01f600% ๐Ÿ˜€ \:grinning: Grinning Face + ^^^^^^01f601% ๐Ÿ˜ \:grin: Grinning Face With Smiling Eyes + ^^^^^^01f602% ๐Ÿ˜‚ \:joy: Face With Tears Of Joy + ^^^^^^01f603% ๐Ÿ˜ƒ \:smiley: Smiling Face With Open Mouth + ^^^^^^01f604% ๐Ÿ˜„ \:smile: Smiling Face With Open Mouth And Smiling Eyes + ^^^^^^01f605% ๐Ÿ˜… \:sweat_smile: Smiling Face With Open Mouth And Cold Sweat + ^^^^^^01f606% ๐Ÿ˜† \:laughing: Smiling Face With Open Mouth And Tightly-Closed Eyes + ^^^^^^01f607% ๐Ÿ˜‡ \:innocent: Smiling Face With Halo + ^^^^^^01f608% ๐Ÿ˜ˆ \:smiling_imp: Smiling Face With Horns + ^^^^^^01f609% ๐Ÿ˜‰ \:wink: Winking Face + ^^^^^^01f60a% ๐Ÿ˜Š \:blush: Smiling Face With Smiling Eyes + ^^^^^^01f60b% ๐Ÿ˜‹ \:yum: Face Savouring Delicious Food + ^^^^^^01f60c% ๐Ÿ˜Œ \:relieved: Relieved Face + ^^^^^^01f60d% ๐Ÿ˜ \:heart_eyes: Smiling Face With Heart-Shaped Eyes + ^^^^^^01f60e% ๐Ÿ˜Ž \:sunglasses: Smiling Face With Sunglasses + ^^^^^^01f60f% ๐Ÿ˜ \:smirk: Smirking Face + ^^^^^^01f610% ๐Ÿ˜ \:neutral_face: Neutral Face + ^^^^^^01f611% ๐Ÿ˜‘ \:expressionless: Expressionless Face + ^^^^^^01f612% ๐Ÿ˜’ \:unamused: Unamused Face + ^^^^^^01f613% ๐Ÿ˜“ \:sweat: Face With Cold Sweat + ^^^^^^01f614% ๐Ÿ˜” \:pensive: Pensive Face + ^^^^^^01f615% ๐Ÿ˜• \:confused: Confused Face + ^^^^^^01f616% ๐Ÿ˜– \:confounded: Confounded Face + ^^^^^^01f617% ๐Ÿ˜— \:kissing: Kissing Face + ^^^^^^01f618% ๐Ÿ˜˜ \:kissing_heart: Face Throwing A Kiss + ^^^^^^01f619% ๐Ÿ˜™ \:kissing_smiling_eyes: Kissing Face With Smiling Eyes + ^^^^^^01f61a% ๐Ÿ˜š \:kissing_closed_eyes: Kissing Face With Closed Eyes + ^^^^^^01f61b% ๐Ÿ˜› \:stuck_out_tongue: Face With Stuck-Out Tongue + ^^^^^^01f61c% ๐Ÿ˜œ \:stuck_out_tongue_winking_eye: Face With Stuck-Out Tongue And Winking Eye + ^^^^^^01f61d% ๐Ÿ˜ \:stuck_out_tongue_closed_eyes: Face With Stuck-Out Tongue And Tightly-Closed Eyes + ^^^^^^01f61e% ๐Ÿ˜ž \:disappointed: Disappointed Face + ^^^^^^01f61f% ๐Ÿ˜Ÿ \:worried: Worried Face + ^^^^^^01f620% ๐Ÿ˜  \:angry: Angry Face + ^^^^^^01f621% ๐Ÿ˜ก \:rage: Pouting Face + ^^^^^^01f622% ๐Ÿ˜ข \:cry: Crying Face + ^^^^^^01f623% ๐Ÿ˜ฃ \:persevere: Persevering Face + ^^^^^^01f624% ๐Ÿ˜ค \:triumph: Face With Look Of Triumph + ^^^^^^01f625% ๐Ÿ˜ฅ \:disappointed_relieved: Disappointed But Relieved Face + ^^^^^^01f626% ๐Ÿ˜ฆ \:frowning: Frowning Face With Open Mouth + ^^^^^^01f627% ๐Ÿ˜ง \:anguished: Anguished Face + ^^^^^^01f628% ๐Ÿ˜จ \:fearful: Fearful Face + ^^^^^^01f629% ๐Ÿ˜ฉ \:weary: Weary Face + ^^^^^^01f62a% ๐Ÿ˜ช \:sleepy: Sleepy Face + ^^^^^^01f62b% ๐Ÿ˜ซ \:tired_face: Tired Face + ^^^^^^01f62c% ๐Ÿ˜ฌ \:grimacing: Grimacing Face + ^^^^^^01f62d% ๐Ÿ˜ญ \:sob: Loudly Crying Face + ^^^^^^01f62e% ๐Ÿ˜ฎ \:open_mouth: Face With Open Mouth + ^^^^^^01f62f% ๐Ÿ˜ฏ \:hushed: Hushed Face + ^^^^^^01f630% ๐Ÿ˜ฐ \:cold_sweat: Face With Open Mouth And Cold Sweat + ^^^^^^01f631% ๐Ÿ˜ฑ \:scream: Face Screaming In Fear + ^^^^^^01f632% ๐Ÿ˜ฒ \:astonished: Astonished Face + ^^^^^^01f633% ๐Ÿ˜ณ \:flushed: Flushed Face + ^^^^^^01f634% ๐Ÿ˜ด \:sleeping: Sleeping Face + ^^^^^^01f635% ๐Ÿ˜ต \:dizzy_face: Dizzy Face + ^^^^^^01f636% ๐Ÿ˜ถ \:no_mouth: Face Without Mouth + ^^^^^^01f637% ๐Ÿ˜ท \:mask: Face With Medical Mask + ^^^^^^01f638% ๐Ÿ˜ธ \:smile_cat: Grinning Cat Face With Smiling Eyes + ^^^^^^01f639% ๐Ÿ˜น \:joy_cat: Cat Face With Tears Of Joy + ^^^^^^01f63a% ๐Ÿ˜บ \:smiley_cat: Smiling Cat Face With Open Mouth + ^^^^^^01f63b% ๐Ÿ˜ป \:heart_eyes_cat: Smiling Cat Face With Heart-Shaped Eyes + ^^^^^^01f63c% ๐Ÿ˜ผ \:smirk_cat: Cat Face With Wry Smile + ^^^^^^01f63d% ๐Ÿ˜ฝ \:kissing_cat: Kissing Cat Face With Closed Eyes + ^^^^^^01f63e% ๐Ÿ˜พ \:pouting_cat: Pouting Cat Face + ^^^^^^01f63f% ๐Ÿ˜ฟ \:crying_cat_face: Crying Cat Face + ^^^^^^01f640% ๐Ÿ™€ \:scream_cat: Weary Cat Face + ^^^^^^01f645% ๐Ÿ™… \:no_good: Face With No Good Gesture + ^^^^^^01f646% ๐Ÿ™† \:ok_woman: Face With Ok Gesture + ^^^^^^01f647% ๐Ÿ™‡ \:bow: Person Bowing Deeply + ^^^^^^01f648% ๐Ÿ™ˆ \:see_no_evil: See-No-Evil Monkey + ^^^^^^01f649% ๐Ÿ™‰ \:hear_no_evil: Hear-No-Evil Monkey + ^^^^^^01f64a% ๐Ÿ™Š \:speak_no_evil: Speak-No-Evil Monkey + ^^^^^^01f64b% ๐Ÿ™‹ \:raising_hand: Happy Person Raising One Hand + ^^^^^^01f64c% ๐Ÿ™Œ \:raised_hands: Person Raising Both Hands In Celebration + ^^^^^^01f64d% ๐Ÿ™ \:person_frowning: Person Frowning + ^^^^^^01f64e% ๐Ÿ™Ž \:person_with_pouting_face: Person With Pouting Face + ^^^^^^01f64f% ๐Ÿ™ \:pray: Person With Folded Hands + ^^^^^^01f680% ๐Ÿš€ \:rocket: Rocket + ^^^^^^01f681% ๐Ÿš \:helicopter: Helicopter + ^^^^^^01f682% ๐Ÿš‚ \:steam_locomotive: Steam Locomotive + ^^^^^^01f683% ๐Ÿšƒ \:railway_car: Railway Car + ^^^^^^01f684% ๐Ÿš„ \:bullettrain_side: High-Speed Train + ^^^^^^01f685% ๐Ÿš… \:bullettrain_front: High-Speed Train With Bullet Nose + ^^^^^^01f686% ๐Ÿš† \:train2: Train + ^^^^^^01f687% ๐Ÿš‡ \:metro: Metro + ^^^^^^01f688% ๐Ÿšˆ \:light_rail: Light Rail + ^^^^^^01f689% ๐Ÿš‰ \:station: Station + ^^^^^^01f68a% ๐ŸšŠ \:tram: Tram + ^^^^^^01f68b% ๐Ÿš‹ \:train: Tram Car + ^^^^^^01f68c% ๐ŸšŒ \:bus: Bus + ^^^^^^01f68d% ๐Ÿš \:oncoming_bus: Oncoming Bus + ^^^^^^01f68e% ๐ŸšŽ \:trolleybus: Trolleybus + ^^^^^^01f68f% ๐Ÿš \:busstop: Bus Stop + ^^^^^^01f690% ๐Ÿš \:minibus: Minibus + ^^^^^^01f691% ๐Ÿš‘ \:ambulance: Ambulance + ^^^^^^01f692% ๐Ÿš’ \:fire_engine: Fire Engine + ^^^^^^01f693% ๐Ÿš“ \:police_car: Police Car + ^^^^^^01f694% ๐Ÿš” \:oncoming_police_car: Oncoming Police Car + ^^^^^^01f695% ๐Ÿš• \:taxi: Taxi + ^^^^^^01f696% ๐Ÿš– \:oncoming_taxi: Oncoming Taxi + ^^^^^^01f697% ๐Ÿš— \:car: Automobile + ^^^^^^01f698% ๐Ÿš˜ \:oncoming_automobile: Oncoming Automobile + ^^^^^^01f699% ๐Ÿš™ \:blue_car: Recreational Vehicle + ^^^^^^01f69a% ๐Ÿšš \:truck: Delivery Truck + ^^^^^^01f69b% ๐Ÿš› \:articulated_lorry: Articulated Lorry + ^^^^^^01f69c% ๐Ÿšœ \:tractor: Tractor + ^^^^^^01f69d% ๐Ÿš \:monorail: Monorail + ^^^^^^01f69e% ๐Ÿšž \:mountain_railway: Mountain Railway + ^^^^^^01f69f% ๐ŸšŸ \:suspension_railway: Suspension Railway + ^^^^^^01f6a0% ๐Ÿš  \:mountain_cableway: Mountain Cableway + ^^^^^^01f6a1% ๐Ÿšก \:aerial_tramway: Aerial Tramway + ^^^^^^01f6a2% ๐Ÿšข \:ship: Ship + ^^^^^^01f6a3% ๐Ÿšฃ \:rowboat: Rowboat + ^^^^^^01f6a4% ๐Ÿšค \:speedboat: Speedboat + ^^^^^^01f6a5% ๐Ÿšฅ \:traffic_light: Horizontal Traffic Light + ^^^^^^01f6a6% ๐Ÿšฆ \:vertical_traffic_light: Vertical Traffic Light + ^^^^^^01f6a7% ๐Ÿšง \:construction: Construction Sign + ^^^^^^01f6a8% ๐Ÿšจ \:rotating_light: Police Cars Revolving Light + ^^^^^^01f6a9% ๐Ÿšฉ \:triangular_flag_on_post: Triangular Flag On Post + ^^^^^^01f6aa% ๐Ÿšช \:door: Door + ^^^^^^01f6ab% ๐Ÿšซ \:no_entry_sign: No Entry Sign + ^^^^^^01f6ac% ๐Ÿšฌ \:smoking: Smoking Symbol + ^^^^^^01f6ad% ๐Ÿšญ \:no_smoking: No Smoking Symbol + ^^^^^^01f6ae% ๐Ÿšฎ \:put_litter_in_its_place: Put Litter In Its Place Symbol + ^^^^^^01f6af% ๐Ÿšฏ \:do_not_litter: Do Not Litter Symbol + ^^^^^^01f6b0% ๐Ÿšฐ \:potable_water: Potable Water Symbol + ^^^^^^01f6b1% ๐Ÿšฑ \:non-potable_water: Non-Potable Water Symbol + ^^^^^^01f6b2% ๐Ÿšฒ \:bike: Bicycle + ^^^^^^01f6b3% ๐Ÿšณ \:no_bicycles: No Bicycles + ^^^^^^01f6b4% ๐Ÿšด \:bicyclist: Bicyclist + ^^^^^^01f6b5% ๐Ÿšต \:mountain_bicyclist: Mountain Bicyclist + ^^^^^^01f6b6% ๐Ÿšถ \:walking: Pedestrian + ^^^^^^01f6b7% ๐Ÿšท \:no_pedestrians: No Pedestrians + ^^^^^^01f6b8% ๐Ÿšธ \:children_crossing: Children Crossing + ^^^^^^01f6b9% ๐Ÿšน \:mens: Mens Symbol + ^^^^^^01f6ba% ๐Ÿšบ \:womens: Womens Symbol + ^^^^^^01f6bb% ๐Ÿšป \:restroom: Restroom + ^^^^^^01f6bc% ๐Ÿšผ \:baby_symbol: Baby Symbol + ^^^^^^01f6bd% ๐Ÿšฝ \:toilet: Toilet + ^^^^^^01f6be% ๐Ÿšพ \:wc: Water Closet + ^^^^^^01f6bf% ๐Ÿšฟ \:shower: Shower + ^^^^^^01f6c0% ๐Ÿ›€ \:bath: Bath + ^^^^^^01f6c1% ๐Ÿ› \:bathtub: Bathtub + ^^^^^^01f6c2% ๐Ÿ›‚ \:passport_control: Passport Control + ^^^^^^01f6c3% ๐Ÿ›ƒ \:customs: Customs + ^^^^^^01f6c4% ๐Ÿ›„ \:baggage_claim: Baggage Claim + ^^^^^^01f6c5% ๐Ÿ›… \:left_luggage: Left Luggage + ^^00} +\lst@RestoreCatcodes +\makeatother \ No newline at end of file diff --git a/preamble/preamble.tex b/preamble/preamble.tex index 6ab4439..b719fbc 100644 --- a/preamble/preamble.tex +++ b/preamble/preamble.tex @@ -9,6 +9,17 @@ \usepackage{preamble/vector} % local vector.sty for bold Greek math letters +\input{julia_font} +\input{julia_listings} + +\lstdefinelanguage{JuliaLocal}[]{Julia}{ % inherit Julia lang. to add keywords + morekeywords=[3]{initialize!, transition!, evaluate!, distance, isevent, isterminal, environment, evaluation_schedule, eachcol, model_elite_set!, fit, ce_surrogate, sierra, paraboloid}, + morekeywords=[2]{Nothing, Tuple, Real, Bool, Simulation, BlackBox, GrayBox, Sampleable, Environment, MvNormal}, + morekeywords=[1]{function, abstract, type, end}, + morekeywords=[2]{CrossEntropyVariants, Distributions}, % define more types and modules +} + + %%% Mathematical operators (from mathematics.tex) \DeclareMathOperator{\Var}{Var} \DeclareMathOperator{\SD}{SD} @@ -293,45 +304,45 @@ %%% POMDPStressTesting.jl \usepackage{listings} -\lstdefinelanguage{Julia}{ - keywords=[3]{initialize!, transition!, evaluate!, distance, isevent, isterminal, environment}, - keywords=[2]{Nothing, Tuple, Real, Bool, Simulation, BlackBox, GrayBox, Sampleable, Environment}, - keywords=[1]{function, abstract, type, end}, - sensitive=true, - morecomment=[l]{\#}, - morecomment=[n]{\#=}{=\#}, - morestring=[s]{"}{"}, - morestring=[m]{'}{'}, - alsoletter=!?, - literate={,}{{\color[HTML]{0F6FA3},}}1 - {\{}{{\color[HTML]{0F6FA3}\{}}1 - {\}}{{\color[HTML]{0F6FA3}\}}}1 -} - -\lstset{ - language = Julia, - backgroundcolor = \color[HTML]{F2F2F2}, - basicstyle = \small\ttfamily\color[HTML]{19177C}, - numberstyle = \ttfamily\scriptsize\color[HTML]{7F7F7F}, - keywordstyle = [1]{\bfseries\color[HTML]{1BA1EA}}, - keywordstyle = [2]{\color[HTML]{0F6FA3}}, - keywordstyle = [3]{\color[HTML]{0000FF}}, - stringstyle = \color[HTML]{F5615C}, - commentstyle = \color[HTML]{AAAAAA}, - rulecolor = \color[HTML]{000000}, - frame=lines, - xleftmargin=10pt, - framexleftmargin=10pt, - framextopmargin=4pt, - framexbottommargin=4pt, - tabsize=4, - captionpos=b, - breaklines=true, - breakatwhitespace=false, - showstringspaces=false, - showspaces=false, - showtabs=false, - columns=fullflexible, - keepspaces=true, - numbers=none, -} \ No newline at end of file +% \lstdefinelanguage{Julia}{ +% keywords=[3]{initialize!, transition!, evaluate!, distance, isevent, isterminal, environment}, +% keywords=[2]{Nothing, Tuple, Real, Bool, Simulation, BlackBox, GrayBox, Sampleable, Environment}, +% keywords=[1]{function, abstract, type, end}, +% sensitive=true, +% morecomment=[l]{\#}, +% morecomment=[n]{\#=}{=\#}, +% morestring=[s]{"}{"}, +% morestring=[m]{'}{'}, +% alsoletter=!?, +% literate={,}{{\color[HTML]{0F6FA3},}}1 +% {\{}{{\color[HTML]{0F6FA3}\{}}1 +% {\}}{{\color[HTML]{0F6FA3}\}}}1 +% } + +% \lstset{ +% language = Julia, +% backgroundcolor = \color[HTML]{F2F2F2}, +% basicstyle = \small\ttfamily\color[HTML]{19177C}, +% numberstyle = \ttfamily\scriptsize\color[HTML]{7F7F7F}, +% keywordstyle = [1]{\bfseries\color[HTML]{1BA1EA}}, +% keywordstyle = [2]{\color[HTML]{0F6FA3}}, +% keywordstyle = [3]{\color[HTML]{0000FF}}, +% stringstyle = \color[HTML]{F5615C}, +% commentstyle = \color[HTML]{AAAAAA}, +% rulecolor = \color[HTML]{000000}, +% frame=lines, +% xleftmargin=10pt, +% framexleftmargin=10pt, +% framextopmargin=4pt, +% framexbottommargin=4pt, +% tabsize=4, +% captionpos=b, +% breaklines=true, +% breakatwhitespace=false, +% showstringspaces=false, +% showspaces=false, +% showtabs=false, +% columns=fullflexible, +% keepspaces=true, +% numbers=none, +% } \ No newline at end of file