Unicode Finder

"餒" U+9912(CJK UNIFIED IDEOGRAPH-9912)

U+9912
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-9912

Programming

C
\u9912
JavaScript
\u9912
Java
\u9912
Json
\u9912
Python
\u9912
Perl
\x{9912}
PHP
\x{9912}
Ruby
\u{9912}
Rust
\u{9912}
Go
\u9912

Web

CSS
\009912
HtmlDecimal
餒
HtmlHexadecimal
餒
Url
%E9%A4%92

Code

MD5
e0d227613dbfd65974b6cb9e2a60b192
Sha1
cbd692ee2c729f05cfd01920d1c4d9c735e7cb38
Base64
6aSS

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9912';
console.log(char);  // Output: 餒

Java:

char c = '\u9912';
System.out.println(c);  // Output: 餒

JSON:

{"text": "\u9912"}  // Value: 餒

Python:

char = '\u9912'
print(char)  # Output: 餒

Perl:

my $char = "\x{9912}";
print $char;  # Output: 餒

PHP:

$char = "\x{9912}";
echo $char;  // Output: 餒

Ruby:

char = "\u{9912}"
puts char  # Output: 餒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009912";  /* Display: 餒 */
}

HTML Decimal:

<p>HTML decimal: &#39186;</p>  <!-- Display: 餒 -->

HTML Hexadecimal:

<p>HTML hex: &#x9912;</p>  <!-- Display: 餒 -->

URL Encoding:

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

Encodings

MD5:

e0d227613dbfd65974b6cb9e2a60b192

SHA1:

cbd692ee2c729f05cfd01920d1c4d9c735e7cb38

Base64:

6aSS