Unicode Finder

"璬" U+74AC(CJK UNIFIED IDEOGRAPH-74AC)

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

Programming

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

Web

CSS
\0074AC
HtmlDecimal
璬
HtmlHexadecimal
璬
Url
%E7%92%AC

Code

MD5
30f86fc13642766c9b46dd4f688c23ee
Sha1
83dde7ca4bf6a56925711922efdc3eb53a10b786
Base64
55Ks

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u74AC';
console.log(char);  // Output: 璬

Java:

char c = '\u74AC';
System.out.println(c);  // Output: 璬

JSON:

{"text": "\u74AC"}  // Value: 璬

Python:

char = '\u74AC'
print(char)  # Output: 璬

Perl:

my $char = "\x{74AC}";
print $char;  # Output: 璬

PHP:

$char = "\x{74AC}";
echo $char;  // Output: 璬

Ruby:

char = "\u{74AC}"
puts char  # Output: 璬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#29868;</p>  <!-- Display: 璬 -->

HTML Hexadecimal:

<p>HTML hex: &#x74AC;</p>  <!-- Display: 璬 -->

URL Encoding:

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

Encodings

MD5:

30f86fc13642766c9b46dd4f688c23ee

SHA1:

83dde7ca4bf6a56925711922efdc3eb53a10b786

Base64:

55Ks