Unicode Finder

"廗" U+5ED7(CJK UNIFIED IDEOGRAPH-5ED7)

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

Programming

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

Web

CSS
\005ED7
HtmlDecimal
廗
HtmlHexadecimal
廗
Url
%E5%BB%97

Code

MD5
5acb38eedb2dd40b44c625120f704af6
Sha1
860a83390befb8f150a999f5a1ef5b1e523d9b99
Base64
5buX

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5ED7';
console.log(char);  // Output: 廗

Java:

char c = '\u5ED7';
System.out.println(c);  // Output: 廗

JSON:

{"text": "\u5ED7"}  // Value: 廗

Python:

char = '\u5ED7'
print(char)  # Output: 廗

Perl:

my $char = "\x{5ED7}";
print $char;  # Output: 廗

PHP:

$char = "\x{5ED7}";
echo $char;  // Output: 廗

Ruby:

char = "\u{5ED7}"
puts char  # Output: 廗

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24279;</p>  <!-- Display: 廗 -->

HTML Hexadecimal:

<p>HTML hex: &#x5ED7;</p>  <!-- Display: 廗 -->

URL Encoding:

// 廗 URL encoding
https://unicodefinder.com/search.php?query=%E5%BB%97

Encodings

MD5:

5acb38eedb2dd40b44c625120f704af6

SHA1:

860a83390befb8f150a999f5a1ef5b1e523d9b99

Base64:

5buX