Unicode Finder

"钬" U+94AC(CJK UNIFIED IDEOGRAPH-94AC)

U+94AC
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-94AC

Programming

C
\u94AC
JavaScript
\u94AC
Java
\u94AC
Json
\u94AC
Python
\u94AC
Perl
\x{94AC}
PHP
\x{94AC}
Ruby
\u{94AC}
Rust
\u{94AC}
Go
\u94AC

Web

CSS
\0094AC
HtmlDecimal
钬
HtmlHexadecimal
钬
Url
%E9%92%AC

Code

MD5
f6c116605afeb0b80b6b63de85f9868d
Sha1
060c66db1cd919345fc06f32dbfe010b586a1d94
Base64
6ZKs

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u94AC';
console.log(char);  // Output: 钬

Java:

char c = '\u94AC';
System.out.println(c);  // Output: 钬

JSON:

{"text": "\u94AC"}  // Value: 钬

Python:

char = '\u94AC'
print(char)  # Output: 钬

Perl:

my $char = "\x{94AC}";
print $char;  # Output: 钬

PHP:

$char = "\x{94AC}";
echo $char;  // Output: 钬

Ruby:

char = "\u{94AC}"
puts char  # Output: 钬

Rust:

let c = '\u{94AC}';
println!("{}", c);  // Output: 钬

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0094AC";  /* Display: 钬 */
}

HTML Decimal:

<p>HTML decimal: &#38060;</p>  <!-- Display: 钬 -->

HTML Hexadecimal:

<p>HTML hex: &#x94AC;</p>  <!-- Display: 钬 -->

URL Encoding:

// 钬 URL encoding
https://unicodefinder.com/search.php?query=%E9%92%AC

Encodings

MD5:

f6c116605afeb0b80b6b63de85f9868d

SHA1:

060c66db1cd919345fc06f32dbfe010b586a1d94

Base64:

6ZKs