Unicode Finder

"礪" U+792A(CJK UNIFIED IDEOGRAPH-792A)

U+792A
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-792A

Programming

C
\u792A
JavaScript
\u792A
Java
\u792A
Json
\u792A
Python
\u792A
Perl
\x{792A}
PHP
\x{792A}
Ruby
\u{792A}
Rust
\u{792A}
Go
\u792A

Web

CSS
\00792A
HtmlDecimal
礪
HtmlHexadecimal
礪
Url
%E7%A4%AA

Code

MD5
e771385b9c7b320247860b4630dffe01
Sha1
6eef3f67279b7f03c00d434e30c25786f78529c6
Base64
56Sq

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u792A';
console.log(char);  // Output: 礪

Java:

char c = '\u792A';
System.out.println(c);  // Output: 礪

JSON:

{"text": "\u792A"}  // Value: 礪

Python:

char = '\u792A'
print(char)  # Output: 礪

Perl:

my $char = "\x{792A}";
print $char;  # Output: 礪

PHP:

$char = "\x{792A}";
echo $char;  // Output: 礪

Ruby:

char = "\u{792A}"
puts char  # Output: 礪

Rust:

let c = '\u{792A}';
println!("{}", c);  // Output: 礪

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00792A";  /* Display: 礪 */
}

HTML Decimal:

<p>HTML decimal: &#31018;</p>  <!-- Display: 礪 -->

HTML Hexadecimal:

<p>HTML hex: &#x792A;</p>  <!-- Display: 礪 -->

URL Encoding:

// 礪 URL encoding
https://unicodefinder.com/search.php?query=%E7%A4%AA

Encodings

MD5:

e771385b9c7b320247860b4630dffe01

SHA1:

6eef3f67279b7f03c00d434e30c25786f78529c6

Base64:

56Sq