Unicode Finder

"居" U+5C45(CJK UNIFIED IDEOGRAPH-5C45)

U+5C45
Blokk Neve
CJK Unified Ideographs
Név
CJK UNIFIED IDEOGRAPH-5C45

Programming

C
\u5C45
JavaScript
\u5C45
Java
\u5C45
Json
\u5C45
Python
\u5C45
Perl
\x{5C45}
PHP
\x{5C45}
Ruby
\u{5C45}
Rust
\u{5C45}
Go
\u5C45

Web

CSS
\005C45
HtmlDecimal
居
HtmlHexadecimal
居
Url
%E5%B1%85

Code

MD5
9bb8fecd616829341a7967e0114877f9
Sha1
ade99e97e1159385648a17253408f6368dc514a4
Base64
5bGF

Használati Példák

Programming Languages

C:

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

JavaScript:

const char = '\u5C45';
console.log(char);  // Output: 居

Java:

char c = '\u5C45';
System.out.println(c);  // Output: 居

JSON:

{"text": "\u5C45"}  // Value: 居

Python:

char = '\u5C45'
print(char)  # Output: 居

Perl:

my $char = "\x{5C45}";
print $char;  # Output: 居

PHP:

$char = "\x{5C45}";
echo $char;  // Output: 居

Ruby:

char = "\u{5C45}"
puts char  # Output: 居

Rust:

let c = '\u{5C45}';
println!("{}", c);  // Output: 居

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005C45";  /* Display: 居 */
}

HTML Decimal:

<p>HTML decimal: &#23621;</p>  <!-- Display: 居 -->

HTML Hexadecimal:

<p>HTML hex: &#x5C45;</p>  <!-- Display: 居 -->

URL Encoding:

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

Encodings

MD5:

9bb8fecd616829341a7967e0114877f9

SHA1:

ade99e97e1159385648a17253408f6368dc514a4

Base64:

5bGF