Unicode Finder

"餿" U+993F(CJK UNIFIED IDEOGRAPH-993F)

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

Programming

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

Web

CSS
\00993F
HtmlDecimal
餿
HtmlHexadecimal
餿
Url
%E9%A4%BF

Code

MD5
415531b1642c273f88c14c355b4939f1
Sha1
ad8d9d2d08ad038251fc1c0341cf84405763bda6
Base64
6aS/

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u993F';
console.log(char);  // Output: 餿

Java:

char c = '\u993F';
System.out.println(c);  // Output: 餿

JSON:

{"text": "\u993F"}  // Value: 餿

Python:

char = '\u993F'
print(char)  # Output: 餿

Perl:

my $char = "\x{993F}";
print $char;  # Output: 餿

PHP:

$char = "\x{993F}";
echo $char;  // Output: 餿

Ruby:

char = "\u{993F}"
puts char  # Output: 餿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39231;</p>  <!-- Display: 餿 -->

HTML Hexadecimal:

<p>HTML hex: &#x993F;</p>  <!-- Display: 餿 -->

URL Encoding:

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

Encodings

MD5:

415531b1642c273f88c14c355b4939f1

SHA1:

ad8d9d2d08ad038251fc1c0341cf84405763bda6

Base64:

6aS/