Unicode Finder

"๘" U+0E58(THAI DIGIT EIGHT)

U+0E58
ชื่อบล็อก
Thai
ชื่อ
THAI DIGIT EIGHT

Programming

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

Web

CSS
\000E58
HtmlDecimal
๘
HtmlHexadecimal
๘
Url
%E0%B9%98

Code

MD5
0032207999745d6b583112c97895f27f
Sha1
7c62a37a2284aae5b001f2c6239472f3dfaca64e
Base64
4LmY

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

Programming Languages

C:

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

JavaScript:

const char = '\u0E58';
console.log(char);  // Output: ๘

Java:

char c = '\u0E58';
System.out.println(c);  // Output: ๘

JSON:

{"text": "\u0E58"}  // Value: ๘

Python:

char = '\u0E58'
print(char)  # Output: ๘

Perl:

my $char = "\x{0E58}";
print $char;  # Output: ๘

PHP:

$char = "\x{0E58}";
echo $char;  // Output: ๘

Ruby:

char = "\u{0E58}"
puts char  # Output: ๘

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#3672;</p>  <!-- Display: ๘ -->

HTML Hexadecimal:

<p>HTML hex: &#x0E58;</p>  <!-- Display: ๘ -->

URL Encoding:

// ๘ URL encoding
https://unicodefinder.com/search.php?query=%E0%B9%98

Encodings

MD5:

0032207999745d6b583112c97895f27f

SHA1:

7c62a37a2284aae5b001f2c6239472f3dfaca64e

Base64:

4LmY