Unicode Finder

"够" U+591F(CJK UNIFIED IDEOGRAPH-591F)

U+591F
Nome do Bloco
CJK Unified Ideographs
Nome
CJK UNIFIED IDEOGRAPH-591F

Programming

C
\u591F
JavaScript
\u591F
Java
\u591F
Json
\u591F
Python
\u591F
Perl
\x{591F}
PHP
\x{591F}
Ruby
\u{591F}
Rust
\u{591F}
Go
\u591F

Web

CSS
\00591F
HtmlDecimal
够
HtmlHexadecimal
够
Url
%E5%A4%9F

Code

MD5
1901fd70d5bc71bb7569ea8950d65b49
Sha1
a69bf3c14fe83508d83e3afa99402009905963cf
Base64
5aSf

Exemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u591F';
console.log(char);  // Output: 够

Java:

char c = '\u591F';
System.out.println(c);  // Output: 够

JSON:

{"text": "\u591F"}  // Value: 够

Python:

char = '\u591F'
print(char)  # Output: 够

Perl:

my $char = "\x{591F}";
print $char;  # Output: 够

PHP:

$char = "\x{591F}";
echo $char;  // Output: 够

Ruby:

char = "\u{591F}"
puts char  # Output: 够

Rust:

let c = '\u{591F}';
println!("{}", c);  // Output: 够

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00591F";  /* Display: 够 */
}

HTML Decimal:

<p>HTML decimal: &#22815;</p>  <!-- Display: 够 -->

HTML Hexadecimal:

<p>HTML hex: &#x591F;</p>  <!-- Display: 够 -->

URL Encoding:

// 够 URL encoding
https://unicodefinder.com/search.php?query=%E5%A4%9F

Encodings

MD5:

1901fd70d5bc71bb7569ea8950d65b49

SHA1:

a69bf3c14fe83508d83e3afa99402009905963cf

Base64:

5aSf