Unicode Finder

"奸" U+5978(CJK UNIFIED IDEOGRAPH-5978)

U+5978
Όνομα Μπλοκ
CJK Unified Ideographs
Όνομα
CJK UNIFIED IDEOGRAPH-5978

Programming

C
\u5978
JavaScript
\u5978
Java
\u5978
Json
\u5978
Python
\u5978
Perl
\x{5978}
PHP
\x{5978}
Ruby
\u{5978}
Rust
\u{5978}
Go
\u5978

Web

CSS
\005978
HtmlDecimal
奸
HtmlHexadecimal
奸
Url
%E5%A5%B8

Code

MD5
974a170cafec24667a1d72f33e39ecfb
Sha1
efbb2933419fa0d99b61c1952aa9871d94a3ae5f
Base64
5aW4

Παραδείγματα Χρήσης

Programming Languages

C:

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

JavaScript:

const char = '\u5978';
console.log(char);  // Output: 奸

Java:

char c = '\u5978';
System.out.println(c);  // Output: 奸

JSON:

{"text": "\u5978"}  // Value: 奸

Python:

char = '\u5978'
print(char)  # Output: 奸

Perl:

my $char = "\x{5978}";
print $char;  # Output: 奸

PHP:

$char = "\x{5978}";
echo $char;  // Output: 奸

Ruby:

char = "\u{5978}"
puts char  # Output: 奸

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005978";  /* Display: 奸 */
}

HTML Decimal:

<p>HTML decimal: &#22904;</p>  <!-- Display: 奸 -->

HTML Hexadecimal:

<p>HTML hex: &#x5978;</p>  <!-- Display: 奸 -->

URL Encoding:

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

Encodings

MD5:

974a170cafec24667a1d72f33e39ecfb

SHA1:

efbb2933419fa0d99b61c1952aa9871d94a3ae5f

Base64:

5aW4