Unicode Finder

"奷" U+5977(CJK UNIFIED IDEOGRAPH-5977)

U+5977
Nome do Bloco
CJK Unified Ideographs
Nome
CJK UNIFIED IDEOGRAPH-5977

Programming

C
\u5977
JavaScript
\u5977
Java
\u5977
Json
\u5977
Python
\u5977
Perl
\x{5977}
PHP
\x{5977}
Ruby
\u{5977}
Rust
\u{5977}
Go
\u5977

Web

CSS
\005977
HtmlDecimal
奷
HtmlHexadecimal
奷
Url
%E5%A5%B7

Code

MD5
d957a936ab27aae475ede634b3c2cd11
Sha1
5f81c821d5b35472418d517cbe9a7ff4cc5ca074
Base64
5aW3

Exemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u5977';
console.log(char);  // Output: 奷

Java:

char c = '\u5977';
System.out.println(c);  // Output: 奷

JSON:

{"text": "\u5977"}  // Value: 奷

Python:

char = '\u5977'
print(char)  # Output: 奷

Perl:

my $char = "\x{5977}";
print $char;  # Output: 奷

PHP:

$char = "\x{5977}";
echo $char;  // Output: 奷

Ruby:

char = "\u{5977}"
puts char  # Output: 奷

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005977";  /* Display: 奷 */
}

HTML Decimal:

<p>HTML decimal: &#22903;</p>  <!-- Display: 奷 -->

HTML Hexadecimal:

<p>HTML hex: &#x5977;</p>  <!-- Display: 奷 -->

URL Encoding:

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

Encodings

MD5:

d957a936ab27aae475ede634b3c2cd11

SHA1:

5f81c821d5b35472418d517cbe9a7ff4cc5ca074

Base64:

5aW3