Unicode Finder

"᪳" U+1AB3(COMBINING DOWNWARDS ARROW)

U+1AB3
区块名称
Unknown Block
名称
COMBINING DOWNWARDS ARROW

Programming

C
\u1AB3
JavaScript
\u1AB3
Java
\u1AB3
Json
\u1AB3
Python
\u1AB3
Perl
\x{1AB3}
PHP
\x{1AB3}
Ruby
\u{1AB3}
Rust
\u{1AB3}
Go
\u1AB3

Web

CSS
\001AB3
HtmlDecimal
᪳
HtmlHexadecimal
᪳
Url
%E1%AA%B3

Code

MD5
9cf3a5e641a2ba11f00b7cace513e08f
Sha1
bc5791d6c05932c4cdcebb13991a549e72fcede2
Base64
4aqz

使用示例

Programming Languages

C:

char c = '\u1AB3';
printf("%c\n", c);  // Output: ᪳

JavaScript:

const char = '\u1AB3';
console.log(char);  // Output: ᪳

Java:

char c = '\u1AB3';
System.out.println(c);  // Output: ᪳

JSON:

{"text": "\u1AB3"}  // Value: ᪳

Python:

char = '\u1AB3'
print(char)  # Output: ᪳

Perl:

my $char = "\x{1AB3}";
print $char;  # Output: ᪳

PHP:

$char = "\x{1AB3}";
echo $char;  // Output: ᪳

Ruby:

char = "\u{1AB3}"
puts char  # Output: ᪳

Rust:

let c = '\u{1AB3}';
println!("{}", c);  // Output: ᪳

Go:

char := '\u1AB3'
fmt.Printf("%c\n", char)  // Output: ᪳

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001AB3";  /* Display: ᪳ */
}

HTML Decimal:

<p>HTML decimal: &#6835;</p>  <!-- Display: ᪳ -->

HTML Hexadecimal:

<p>HTML hex: &#x1AB3;</p>  <!-- Display: ᪳ -->

URL Encoding:

// ᪳ URL encoding
https://unicodefinder.com/search.php?query=%E1%AA%B3

Encodings

MD5:

9cf3a5e641a2ba11f00b7cace513e08f

SHA1:

bc5791d6c05932c4cdcebb13991a549e72fcede2

Base64:

4aqz