Unicode Finder

"餓" U+9913(CJK UNIFIED IDEOGRAPH-9913)

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

Programming

C
\u9913
JavaScript
\u9913
Java
\u9913
Json
\u9913
Python
\u9913
Perl
\x{9913}
PHP
\x{9913}
Ruby
\u{9913}
Rust
\u{9913}
Go
\u9913

Web

CSS
\009913
HtmlDecimal
餓
HtmlHexadecimal
餓
Url
%E9%A4%93

Code

MD5
463f0e57ce601cff8b5fa69660dd464d
Sha1
9a478b57a22a05e1de88e704a127cb520938f9f8
Base64
6aST

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9913';
console.log(char);  // Output: 餓

Java:

char c = '\u9913';
System.out.println(c);  // Output: 餓

JSON:

{"text": "\u9913"}  // Value: 餓

Python:

char = '\u9913'
print(char)  # Output: 餓

Perl:

my $char = "\x{9913}";
print $char;  # Output: 餓

PHP:

$char = "\x{9913}";
echo $char;  // Output: 餓

Ruby:

char = "\u{9913}"
puts char  # Output: 餓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009913";  /* Display: 餓 */
}

HTML Decimal:

<p>HTML decimal: &#39187;</p>  <!-- Display: 餓 -->

HTML Hexadecimal:

<p>HTML hex: &#x9913;</p>  <!-- Display: 餓 -->

URL Encoding:

// 餓 URL encoding
https://unicodefinder.com/search.php?query=%E9%A4%93

Encodings

MD5:

463f0e57ce601cff8b5fa69660dd464d

SHA1:

9a478b57a22a05e1de88e704a127cb520938f9f8

Base64:

6aST