Unicode Finder

"稭" U+7A2D(CJK UNIFIED IDEOGRAPH-7A2D)

U+7A2D
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-7A2D

Programming

C
\u7A2D
JavaScript
\u7A2D
Java
\u7A2D
Json
\u7A2D
Python
\u7A2D
Perl
\x{7A2D}
PHP
\x{7A2D}
Ruby
\u{7A2D}
Rust
\u{7A2D}
Go
\u7A2D

Web

CSS
\007A2D
HtmlDecimal
稭
HtmlHexadecimal
稭
Url
%E7%A8%AD

Code

MD5
648222532ba89da3cad02b75b973cc8b
Sha1
ce3c8a1f544dd18f1bd766b037deafb43a1fe3ec
Base64
56it

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7A2D';
console.log(char);  // Output: 稭

Java:

char c = '\u7A2D';
System.out.println(c);  // Output: 稭

JSON:

{"text": "\u7A2D"}  // Value: 稭

Python:

char = '\u7A2D'
print(char)  # Output: 稭

Perl:

my $char = "\x{7A2D}";
print $char;  # Output: 稭

PHP:

$char = "\x{7A2D}";
echo $char;  // Output: 稭

Ruby:

char = "\u{7A2D}"
puts char  # Output: 稭

Rust:

let c = '\u{7A2D}';
println!("{}", c);  // Output: 稭

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007A2D";  /* Display: 稭 */
}

HTML Decimal:

<p>HTML decimal: &#31277;</p>  <!-- Display: 稭 -->

HTML Hexadecimal:

<p>HTML hex: &#x7A2D;</p>  <!-- Display: 稭 -->

URL Encoding:

// 稭 URL encoding
https://unicodefinder.com/search.php?query=%E7%A8%AD

Encodings

MD5:

648222532ba89da3cad02b75b973cc8b

SHA1:

ce3c8a1f544dd18f1bd766b037deafb43a1fe3ec

Base64:

56it