Unicode Finder

"壟" U+58DF(CJK UNIFIED IDEOGRAPH-58DF)

U+58DF
Nume Bloc
CJK Unified Ideographs
Nume
CJK UNIFIED IDEOGRAPH-58DF

Programming

C
\u58DF
JavaScript
\u58DF
Java
\u58DF
Json
\u58DF
Python
\u58DF
Perl
\x{58DF}
PHP
\x{58DF}
Ruby
\u{58DF}
Rust
\u{58DF}
Go
\u58DF

Web

CSS
\0058DF
HtmlDecimal
壟
HtmlHexadecimal
壟
Url
%E5%A3%9F

Code

MD5
15fde2a17ce589e42dce9db592270c51
Sha1
44f5c68444944f2b7cf408a350ebb32e02a33eaf
Base64
5aOf

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u58DF';
console.log(char);  // Output: 壟

Java:

char c = '\u58DF';
System.out.println(c);  // Output: 壟

JSON:

{"text": "\u58DF"}  // Value: 壟

Python:

char = '\u58DF'
print(char)  # Output: 壟

Perl:

my $char = "\x{58DF}";
print $char;  # Output: 壟

PHP:

$char = "\x{58DF}";
echo $char;  // Output: 壟

Ruby:

char = "\u{58DF}"
puts char  # Output: 壟

Rust:

let c = '\u{58DF}';
println!("{}", c);  // Output: 壟

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0058DF";  /* Display: 壟 */
}

HTML Decimal:

<p>HTML decimal: &#22751;</p>  <!-- Display: 壟 -->

HTML Hexadecimal:

<p>HTML hex: &#x58DF;</p>  <!-- Display: 壟 -->

URL Encoding:

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

Encodings

MD5:

15fde2a17ce589e42dce9db592270c51

SHA1:

44f5c68444944f2b7cf408a350ebb32e02a33eaf

Base64:

5aOf