Unicode Finder

"屩" U+5C69(CJK UNIFIED IDEOGRAPH-5C69)

U+5C69
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-5C69

Programming

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

Web

CSS
\005C69
HtmlDecimal
屩
HtmlHexadecimal
屩
Url
%E5%B1%A9

Code

MD5
e24b3eda0587c5c32897762a3576d49b
Sha1
5801d4aecf95acdbf0c0ab1de88dffa07deb0770
Base64
5bGp

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5C69';
console.log(char);  // Output: 屩

Java:

char c = '\u5C69';
System.out.println(c);  // Output: 屩

JSON:

{"text": "\u5C69"}  // Value: 屩

Python:

char = '\u5C69'
print(char)  # Output: 屩

Perl:

my $char = "\x{5C69}";
print $char;  # Output: 屩

PHP:

$char = "\x{5C69}";
echo $char;  // Output: 屩

Ruby:

char = "\u{5C69}"
puts char  # Output: 屩

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23657;</p>  <!-- Display: 屩 -->

HTML Hexadecimal:

<p>HTML hex: &#x5C69;</p>  <!-- Display: 屩 -->

URL Encoding:

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

Encodings

MD5:

e24b3eda0587c5c32897762a3576d49b

SHA1:

5801d4aecf95acdbf0c0ab1de88dffa07deb0770

Base64:

5bGp