Unicode Finder

"瘟" U+761F(CJK UNIFIED IDEOGRAPH-761F)

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

Programming

C
\u761F
JavaScript
\u761F
Java
\u761F
Json
\u761F
Python
\u761F
Perl
\x{761F}
PHP
\x{761F}
Ruby
\u{761F}
Rust
\u{761F}
Go
\u761F

Web

CSS
\00761F
HtmlDecimal
瘟
HtmlHexadecimal
瘟
Url
%E7%98%9F

Code

MD5
c2d1cd4fd69228a3d81be5755f2a700a
Sha1
aeb50b5e11fb3b466af14c3087ba3d3af05b4d1b
Base64
55if

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u761F';
console.log(char);  // Output: 瘟

Java:

char c = '\u761F';
System.out.println(c);  // Output: 瘟

JSON:

{"text": "\u761F"}  // Value: 瘟

Python:

char = '\u761F'
print(char)  # Output: 瘟

Perl:

my $char = "\x{761F}";
print $char;  # Output: 瘟

PHP:

$char = "\x{761F}";
echo $char;  // Output: 瘟

Ruby:

char = "\u{761F}"
puts char  # Output: 瘟

Rust:

let c = '\u{761F}';
println!("{}", c);  // Output: 瘟

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00761F";  /* Display: 瘟 */
}

HTML Decimal:

<p>HTML decimal: &#30239;</p>  <!-- Display: 瘟 -->

HTML Hexadecimal:

<p>HTML hex: &#x761F;</p>  <!-- Display: 瘟 -->

URL Encoding:

// 瘟 URL encoding
https://unicodefinder.com/search.php?query=%E7%98%9F

Encodings

MD5:

c2d1cd4fd69228a3d81be5755f2a700a

SHA1:

aeb50b5e11fb3b466af14c3087ba3d3af05b4d1b

Base64:

55if