Unicode Finder

"廃" U+5EC3(CJK UNIFIED IDEOGRAPH-5EC3)

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

Programming

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

Web

CSS
\005EC3
HtmlDecimal
廃
HtmlHexadecimal
廃
Url
%E5%BB%83

Code

MD5
0497da230220e8f88e1f8e4084d390a3
Sha1
6bfc24fe6d4e3346a2c66f498b9a4097cc477557
Base64
5buD

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5EC3';
console.log(char);  // Output: 廃

Java:

char c = '\u5EC3';
System.out.println(c);  // Output: 廃

JSON:

{"text": "\u5EC3"}  // Value: 廃

Python:

char = '\u5EC3'
print(char)  # Output: 廃

Perl:

my $char = "\x{5EC3}";
print $char;  # Output: 廃

PHP:

$char = "\x{5EC3}";
echo $char;  // Output: 廃

Ruby:

char = "\u{5EC3}"
puts char  # Output: 廃

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24259;</p>  <!-- Display: 廃 -->

HTML Hexadecimal:

<p>HTML hex: &#x5EC3;</p>  <!-- Display: 廃 -->

URL Encoding:

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

Encodings

MD5:

0497da230220e8f88e1f8e4084d390a3

SHA1:

6bfc24fe6d4e3346a2c66f498b9a4097cc477557

Base64:

5buD