Unicode Finder

"遏" U+904F(CJK UNIFIED IDEOGRAPH-904F)

U+904F
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-904F

Programming

C
\u904F
JavaScript
\u904F
Java
\u904F
Json
\u904F
Python
\u904F
Perl
\x{904F}
PHP
\x{904F}
Ruby
\u{904F}
Rust
\u{904F}
Go
\u904F

Web

CSS
\00904F
HtmlDecimal
遏
HtmlHexadecimal
遏
Url
%E9%81%8F

Code

MD5
06fe8504d937bae71c8517558b07a16e
Sha1
bb8fcd126057d6fdea8366a708f6df6c6bd247ea
Base64
6YGP

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u904F';
console.log(char);  // Output: 遏

Java:

char c = '\u904F';
System.out.println(c);  // Output: 遏

JSON:

{"text": "\u904F"}  // Value: 遏

Python:

char = '\u904F'
print(char)  # Output: 遏

Perl:

my $char = "\x{904F}";
print $char;  # Output: 遏

PHP:

$char = "\x{904F}";
echo $char;  // Output: 遏

Ruby:

char = "\u{904F}"
puts char  # Output: 遏

Rust:

let c = '\u{904F}';
println!("{}", c);  // Output: 遏

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00904F";  /* Display: 遏 */
}

HTML Decimal:

<p>HTML decimal: &#36943;</p>  <!-- Display: 遏 -->

HTML Hexadecimal:

<p>HTML hex: &#x904F;</p>  <!-- Display: 遏 -->

URL Encoding:

// 遏 URL encoding
https://unicodefinder.com/search.php?query=%E9%81%8F

Encodings

MD5:

06fe8504d937bae71c8517558b07a16e

SHA1:

bb8fcd126057d6fdea8366a708f6df6c6bd247ea

Base64:

6YGP