Unicode Finder

"她" U+5979(CJK UNIFIED IDEOGRAPH-5979)

U+5979
Nom du Bloc
CJK Unified Ideographs
Nom
CJK UNIFIED IDEOGRAPH-5979

Programming

C
\u5979
JavaScript
\u5979
Java
\u5979
Json
\u5979
Python
\u5979
Perl
\x{5979}
PHP
\x{5979}
Ruby
\u{5979}
Rust
\u{5979}
Go
\u5979

Web

CSS
\005979
HtmlDecimal
她
HtmlHexadecimal
她
Url
%E5%A5%B9

Code

MD5
92f3ca76d5608458de1465446fd24fcd
Sha1
7f2fa5ddbee2c384a554f6ab18cbca5706a4a4ea
Base64
5aW5

Exemples d'Utilisation

Programming Languages

C:

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

JavaScript:

const char = '\u5979';
console.log(char);  // Output: 她

Java:

char c = '\u5979';
System.out.println(c);  // Output: 她

JSON:

{"text": "\u5979"}  // Value: 她

Python:

char = '\u5979'
print(char)  # Output: 她

Perl:

my $char = "\x{5979}";
print $char;  # Output: 她

PHP:

$char = "\x{5979}";
echo $char;  // Output: 她

Ruby:

char = "\u{5979}"
puts char  # Output: 她

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005979";  /* Display: 她 */
}

HTML Decimal:

<p>HTML decimal: &#22905;</p>  <!-- Display: 她 -->

HTML Hexadecimal:

<p>HTML hex: &#x5979;</p>  <!-- Display: 她 -->

URL Encoding:

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

Encodings

MD5:

92f3ca76d5608458de1465446fd24fcd

SHA1:

7f2fa5ddbee2c384a554f6ab18cbca5706a4a4ea

Base64:

5aW5