Unicode Finder

"食" U+98DF(CJK UNIFIED IDEOGRAPH-98DF)

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

Programming

C
\u98DF
JavaScript
\u98DF
Java
\u98DF
Json
\u98DF
Python
\u98DF
Perl
\x{98DF}
PHP
\x{98DF}
Ruby
\u{98DF}
Rust
\u{98DF}
Go
\u98DF

Web

CSS
\0098DF
HtmlDecimal
食
HtmlHexadecimal
食
Url
%E9%A3%9F

Code

MD5
24bbbad0a65a819a077c429adf606ba4
Sha1
d46696735b6a09ff407bfc1a9407e008840db9c9
Base64
6aOf

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u98DF';
console.log(char);  // Output: 食

Java:

char c = '\u98DF';
System.out.println(c);  // Output: 食

JSON:

{"text": "\u98DF"}  // Value: 食

Python:

char = '\u98DF'
print(char)  # Output: 食

Perl:

my $char = "\x{98DF}";
print $char;  # Output: 食

PHP:

$char = "\x{98DF}";
echo $char;  // Output: 食

Ruby:

char = "\u{98DF}"
puts char  # Output: 食

Rust:

let c = '\u{98DF}';
println!("{}", c);  // Output: 食

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0098DF";  /* Display: 食 */
}

HTML Decimal:

<p>HTML decimal: &#39135;</p>  <!-- Display: 食 -->

HTML Hexadecimal:

<p>HTML hex: &#x98DF;</p>  <!-- Display: 食 -->

URL Encoding:

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

Encodings

MD5:

24bbbad0a65a819a077c429adf606ba4

SHA1:

d46696735b6a09ff407bfc1a9407e008840db9c9

Base64:

6aOf