Unicode Finder

"夅" U+5905(CJK UNIFIED IDEOGRAPH-5905)

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

Programming

C
\u5905
JavaScript
\u5905
Java
\u5905
Json
\u5905
Python
\u5905
Perl
\x{5905}
PHP
\x{5905}
Ruby
\u{5905}
Rust
\u{5905}
Go
\u5905

Web

CSS
\005905
HtmlDecimal
夅
HtmlHexadecimal
夅
Url
%E5%A4%85

Code

MD5
6d5122fc905e667546b243aada9aeb39
Sha1
4afc5e24c73437dcc96c984a273479fdd212b059
Base64
5aSF

Exemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u5905';
console.log(char);  // Output: 夅

Java:

char c = '\u5905';
System.out.println(c);  // Output: 夅

JSON:

{"text": "\u5905"}  // Value: 夅

Python:

char = '\u5905'
print(char)  # Output: 夅

Perl:

my $char = "\x{5905}";
print $char;  # Output: 夅

PHP:

$char = "\x{5905}";
echo $char;  // Output: 夅

Ruby:

char = "\u{5905}"
puts char  # Output: 夅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005905";  /* Display: 夅 */
}

HTML Decimal:

<p>HTML decimal: &#22789;</p>  <!-- Display: 夅 -->

HTML Hexadecimal:

<p>HTML hex: &#x5905;</p>  <!-- Display: 夅 -->

URL Encoding:

// 夅 URL encoding
https://unicodefinder.com/search.php?query=%E5%A4%85

Encodings

MD5:

6d5122fc905e667546b243aada9aeb39

SHA1:

4afc5e24c73437dcc96c984a273479fdd212b059

Base64:

5aSF