Unicode Finder

"᧶" U+19F6(KHMER SYMBOL PRAM-MUOY ROC)

U+19F6
ブロック名
Khmer Symbols
名前
KHMER SYMBOL PRAM-MUOY ROC

Programming

C
\u19F6
JavaScript
\u19F6
Java
\u19F6
Json
\u19F6
Python
\u19F6
Perl
\x{19F6}
PHP
\x{19F6}
Ruby
\u{19F6}
Rust
\u{19F6}
Go
\u19F6

Web

CSS
\0019F6
HtmlDecimal
᧶
HtmlHexadecimal
᧶
Url
%E1%A7%B6

Code

MD5
db6342515e2b28997713f02369c12228
Sha1
d215d170946b37ce7faff9429fc9160ae8e02601
Base64
4ae2

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u19F6';
console.log(char);  // Output: ᧶

Java:

char c = '\u19F6';
System.out.println(c);  // Output: ᧶

JSON:

{"text": "\u19F6"}  // Value: ᧶

Python:

char = '\u19F6'
print(char)  # Output: ᧶

Perl:

my $char = "\x{19F6}";
print $char;  # Output: ᧶

PHP:

$char = "\x{19F6}";
echo $char;  // Output: ᧶

Ruby:

char = "\u{19F6}"
puts char  # Output: ᧶

Rust:

let c = '\u{19F6}';
println!("{}", c);  // Output: ᧶

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0019F6";  /* Display: ᧶ */
}

HTML Decimal:

<p>HTML decimal: &#6646;</p>  <!-- Display: ᧶ -->

HTML Hexadecimal:

<p>HTML hex: &#x19F6;</p>  <!-- Display: ᧶ -->

URL Encoding:

// ᧶ URL encoding
https://unicodefinder.com/search.php?query=%E1%A7%B6

Encodings

MD5:

db6342515e2b28997713f02369c12228

SHA1:

d215d170946b37ce7faff9429fc9160ae8e02601

Base64:

4ae2