Unicode Finder

"奡" U+5961(CJK UNIFIED IDEOGRAPH-5961)

U+5961
Nome del Blocco
CJK Unified Ideographs
Nome
CJK UNIFIED IDEOGRAPH-5961

Programming

C
\u5961
JavaScript
\u5961
Java
\u5961
Json
\u5961
Python
\u5961
Perl
\x{5961}
PHP
\x{5961}
Ruby
\u{5961}
Rust
\u{5961}
Go
\u5961

Web

CSS
\005961
HtmlDecimal
奡
HtmlHexadecimal
奡
Url
%E5%A5%A1

Code

MD5
b28dc7550d00d5b6a52f6af454eac67a
Sha1
ce32ef4f68896864cb2f6927a48bf9a7063e0466
Base64
5aWh

Esempi di Utilizzo

Programming Languages

C:

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

JavaScript:

const char = '\u5961';
console.log(char);  // Output: 奡

Java:

char c = '\u5961';
System.out.println(c);  // Output: 奡

JSON:

{"text": "\u5961"}  // Value: 奡

Python:

char = '\u5961'
print(char)  # Output: 奡

Perl:

my $char = "\x{5961}";
print $char;  # Output: 奡

PHP:

$char = "\x{5961}";
echo $char;  // Output: 奡

Ruby:

char = "\u{5961}"
puts char  # Output: 奡

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005961";  /* Display: 奡 */
}

HTML Decimal:

<p>HTML decimal: &#22881;</p>  <!-- Display: 奡 -->

HTML Hexadecimal:

<p>HTML hex: &#x5961;</p>  <!-- Display: 奡 -->

URL Encoding:

// 奡 URL encoding
https://unicodefinder.com/search.php?query=%E5%A5%A1

Encodings

MD5:

b28dc7550d00d5b6a52f6af454eac67a

SHA1:

ce32ef4f68896864cb2f6927a48bf9a7063e0466

Base64:

5aWh