Unicode Finder

"螒" U+8792(CJK UNIFIED IDEOGRAPH-8792)

U+8792
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-8792

Programming

C
\u8792
JavaScript
\u8792
Java
\u8792
Json
\u8792
Python
\u8792
Perl
\x{8792}
PHP
\x{8792}
Ruby
\u{8792}
Rust
\u{8792}
Go
\u8792

Web

CSS
\008792
HtmlDecimal
螒
HtmlHexadecimal
螒
Url
%E8%9E%92

Code

MD5
6dbff91a75259ba87e77038d98ae364c
Sha1
41f0a1726ffb60782124adeb42e3f53d37a3c4a0
Base64
6J6S

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8792';
console.log(char);  // Output: 螒

Java:

char c = '\u8792';
System.out.println(c);  // Output: 螒

JSON:

{"text": "\u8792"}  // Value: 螒

Python:

char = '\u8792'
print(char)  # Output: 螒

Perl:

my $char = "\x{8792}";
print $char;  # Output: 螒

PHP:

$char = "\x{8792}";
echo $char;  // Output: 螒

Ruby:

char = "\u{8792}"
puts char  # Output: 螒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008792";  /* Display: 螒 */
}

HTML Decimal:

<p>HTML decimal: &#34706;</p>  <!-- Display: 螒 -->

HTML Hexadecimal:

<p>HTML hex: &#x8792;</p>  <!-- Display: 螒 -->

URL Encoding:

// 螒 URL encoding
https://unicodefinder.com/search.php?query=%E8%9E%92

Encodings

MD5:

6dbff91a75259ba87e77038d98ae364c

SHA1:

41f0a1726ffb60782124adeb42e3f53d37a3c4a0

Base64:

6J6S