Unicode Finder

"坵" U+5775(CJK UNIFIED IDEOGRAPH-5775)

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

Programming

C
\u5775
JavaScript
\u5775
Java
\u5775
Json
\u5775
Python
\u5775
Perl
\x{5775}
PHP
\x{5775}
Ruby
\u{5775}
Rust
\u{5775}
Go
\u5775

Web

CSS
\005775
HtmlDecimal
坵
HtmlHexadecimal
坵
Url
%E5%9D%B5

Code

MD5
fdb3f8509372572bd3094176822e4ff4
Sha1
c80b3a0a84b4b8262f9c55b2a7ab555069d64edf
Base64
5Z21

Användningsexempel

Programming Languages

C:

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

JavaScript:

const char = '\u5775';
console.log(char);  // Output: 坵

Java:

char c = '\u5775';
System.out.println(c);  // Output: 坵

JSON:

{"text": "\u5775"}  // Value: 坵

Python:

char = '\u5775'
print(char)  # Output: 坵

Perl:

my $char = "\x{5775}";
print $char;  # Output: 坵

PHP:

$char = "\x{5775}";
echo $char;  // Output: 坵

Ruby:

char = "\u{5775}"
puts char  # Output: 坵

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005775";  /* Display: 坵 */
}

HTML Decimal:

<p>HTML decimal: &#22389;</p>  <!-- Display: 坵 -->

HTML Hexadecimal:

<p>HTML hex: &#x5775;</p>  <!-- Display: 坵 -->

URL Encoding:

// 坵 URL encoding
https://unicodefinder.com/search.php?query=%E5%9D%B5

Encodings

MD5:

fdb3f8509372572bd3094176822e4ff4

SHA1:

c80b3a0a84b4b8262f9c55b2a7ab555069d64edf

Base64:

5Z21