Unicode Finder

"࿕" U+0FD5(RIGHT-FACING SVASTI SIGN)

U+0FD5
ชื่อบล็อก
Tibetan
ชื่อ
RIGHT-FACING SVASTI SIGN

Programming

C
\u0FD5
JavaScript
\u0FD5
Java
\u0FD5
Json
\u0FD5
Python
\u0FD5
Perl
\x{0FD5}
PHP
\x{0FD5}
Ruby
\u{0FD5}
Rust
\u{FD5}
Go
\u0FD5

Web

CSS
\000FD5
HtmlDecimal
࿕
HtmlHexadecimal
࿕
Url
%E0%BF%95

Code

MD5
22ce3a840b6af1f458d57ae3f2d3ee3d
Sha1
3662861ef2be944e69107c8ead3ce6d8b4398726
Base64
4L+V

ตัวอย่างการใช้งาน

Programming Languages

C:

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

JavaScript:

const char = '\u0FD5';
console.log(char);  // Output: ࿕

Java:

char c = '\u0FD5';
System.out.println(c);  // Output: ࿕

JSON:

{"text": "\u0FD5"}  // Value: ࿕

Python:

char = '\u0FD5'
print(char)  # Output: ࿕

Perl:

my $char = "\x{0FD5}";
print $char;  # Output: ࿕

PHP:

$char = "\x{0FD5}";
echo $char;  // Output: ࿕

Ruby:

char = "\u{0FD5}"
puts char  # Output: ࿕

Rust:

let c = '\u{FD5}';
println!("{}", c);  // Output: ࿕

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000FD5";  /* Display: ࿕ */
}

HTML Decimal:

<p>HTML decimal: &#4053;</p>  <!-- Display: ࿕ -->

HTML Hexadecimal:

<p>HTML hex: &#x0FD5;</p>  <!-- Display: ࿕ -->

URL Encoding:

// ࿕ URL encoding
https://unicodefinder.com/search.php?query=%E0%BF%95

Encodings

MD5:

22ce3a840b6af1f458d57ae3f2d3ee3d

SHA1:

3662861ef2be944e69107c8ead3ce6d8b4398726

Base64:

4L+V