Unicode Finder

"弃" U+5F03(CJK UNIFIED IDEOGRAPH-5F03)

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

Programming

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

Web

CSS
\005F03
HtmlDecimal
弃
HtmlHexadecimal
弃
Url
%E5%BC%83

Code

MD5
7ad610e5fc6f449b9cc3e216a4506631
Sha1
53212904d7401abad26875781ea8d32bbbd5470c
Base64
5byD

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5F03';
console.log(char);  // Output: 弃

Java:

char c = '\u5F03';
System.out.println(c);  // Output: 弃

JSON:

{"text": "\u5F03"}  // Value: 弃

Python:

char = '\u5F03'
print(char)  # Output: 弃

Perl:

my $char = "\x{5F03}";
print $char;  # Output: 弃

PHP:

$char = "\x{5F03}";
echo $char;  // Output: 弃

Ruby:

char = "\u{5F03}"
puts char  # Output: 弃

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24323;</p>  <!-- Display: 弃 -->

HTML Hexadecimal:

<p>HTML hex: &#x5F03;</p>  <!-- Display: 弃 -->

URL Encoding:

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

Encodings

MD5:

7ad610e5fc6f449b9cc3e216a4506631

SHA1:

53212904d7401abad26875781ea8d32bbbd5470c

Base64:

5byD