Unicode Finder

"奼" U+597C(CJK UNIFIED IDEOGRAPH-597C)

U+597C
Nome do Bloco
CJK Unified Ideographs
Nome
CJK UNIFIED IDEOGRAPH-597C

Programming

C
\u597C
JavaScript
\u597C
Java
\u597C
Json
\u597C
Python
\u597C
Perl
\x{597C}
PHP
\x{597C}
Ruby
\u{597C}
Rust
\u{597C}
Go
\u597C

Web

CSS
\00597C
HtmlDecimal
奼
HtmlHexadecimal
奼
Url
%E5%A5%BC

Code

MD5
226d65e6392899956fbd3a789f72a0d1
Sha1
e8219b0712556b081fbe8f18cc3a8b32bd892a5b
Base64
5aW8

Exemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u597C';
console.log(char);  // Output: 奼

Java:

char c = '\u597C';
System.out.println(c);  // Output: 奼

JSON:

{"text": "\u597C"}  // Value: 奼

Python:

char = '\u597C'
print(char)  # Output: 奼

Perl:

my $char = "\x{597C}";
print $char;  # Output: 奼

PHP:

$char = "\x{597C}";
echo $char;  // Output: 奼

Ruby:

char = "\u{597C}"
puts char  # Output: 奼

Rust:

let c = '\u{597C}';
println!("{}", c);  // Output: 奼

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00597C";  /* Display: 奼 */
}

HTML Decimal:

<p>HTML decimal: &#22908;</p>  <!-- Display: 奼 -->

HTML Hexadecimal:

<p>HTML hex: &#x597C;</p>  <!-- Display: 奼 -->

URL Encoding:

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

Encodings

MD5:

226d65e6392899956fbd3a789f72a0d1

SHA1:

e8219b0712556b081fbe8f18cc3a8b32bd892a5b

Base64:

5aW8