Unicode Finder

"奰" U+5970(CJK UNIFIED IDEOGRAPH-5970)

U+5970
Blocknamn
CJK Unified Ideographs
Namn
CJK UNIFIED IDEOGRAPH-5970

Programming

C
\u5970
JavaScript
\u5970
Java
\u5970
Json
\u5970
Python
\u5970
Perl
\x{5970}
PHP
\x{5970}
Ruby
\u{5970}
Rust
\u{5970}
Go
\u5970

Web

CSS
\005970
HtmlDecimal
奰
HtmlHexadecimal
奰
Url
%E5%A5%B0

Code

MD5
74566db815e23093486b6291da2fab78
Sha1
f666ef01d44d58315c8e25d712c0034e0b577dd0
Base64
5aWw

Användningsexempel

Programming Languages

C:

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

JavaScript:

const char = '\u5970';
console.log(char);  // Output: 奰

Java:

char c = '\u5970';
System.out.println(c);  // Output: 奰

JSON:

{"text": "\u5970"}  // Value: 奰

Python:

char = '\u5970'
print(char)  # Output: 奰

Perl:

my $char = "\x{5970}";
print $char;  # Output: 奰

PHP:

$char = "\x{5970}";
echo $char;  // Output: 奰

Ruby:

char = "\u{5970}"
puts char  # Output: 奰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005970";  /* Display: 奰 */
}

HTML Decimal:

<p>HTML decimal: &#22896;</p>  <!-- Display: 奰 -->

HTML Hexadecimal:

<p>HTML hex: &#x5970;</p>  <!-- Display: 奰 -->

URL Encoding:

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

Encodings

MD5:

74566db815e23093486b6291da2fab78

SHA1:

f666ef01d44d58315c8e25d712c0034e0b577dd0

Base64:

5aWw