Unicode Finder

"餟" U+991F(CJK UNIFIED IDEOGRAPH-991F)

U+991F
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-991F

Programming

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

Web

CSS
\00991F
HtmlDecimal
餟
HtmlHexadecimal
餟
Url
%E9%A4%9F

Code

MD5
0cefc4c411943b91025bacb86304621f
Sha1
73a126f83d3c149290d3ad5bcb71a16c90937d25
Base64
6aSf

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u991F';
console.log(char);  // Output: 餟

Java:

char c = '\u991F';
System.out.println(c);  // Output: 餟

JSON:

{"text": "\u991F"}  // Value: 餟

Python:

char = '\u991F'
print(char)  # Output: 餟

Perl:

my $char = "\x{991F}";
print $char;  # Output: 餟

PHP:

$char = "\x{991F}";
echo $char;  // Output: 餟

Ruby:

char = "\u{991F}"
puts char  # Output: 餟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39199;</p>  <!-- Display: 餟 -->

HTML Hexadecimal:

<p>HTML hex: &#x991F;</p>  <!-- Display: 餟 -->

URL Encoding:

// 餟 URL encoding
https://unicodefinder.com/search.php?query=%E9%A4%9F

Encodings

MD5:

0cefc4c411943b91025bacb86304621f

SHA1:

73a126f83d3c149290d3ad5bcb71a16c90937d25

Base64:

6aSf