Unicode Finder

"皟" U+769F(CJK UNIFIED IDEOGRAPH-769F)

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

Programming

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

Web

CSS
\00769F
HtmlDecimal
皟
HtmlHexadecimal
皟
Url
%E7%9A%9F

Code

MD5
6cdb2ddd4651be49acfc8683262a354d
Sha1
a5445c777a184373eeb3171d234042fdb2d0ce1e
Base64
55qf

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u769F';
console.log(char);  // Output: 皟

Java:

char c = '\u769F';
System.out.println(c);  // Output: 皟

JSON:

{"text": "\u769F"}  // Value: 皟

Python:

char = '\u769F'
print(char)  # Output: 皟

Perl:

my $char = "\x{769F}";
print $char;  # Output: 皟

PHP:

$char = "\x{769F}";
echo $char;  // Output: 皟

Ruby:

char = "\u{769F}"
puts char  # Output: 皟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30367;</p>  <!-- Display: 皟 -->

HTML Hexadecimal:

<p>HTML hex: &#x769F;</p>  <!-- Display: 皟 -->

URL Encoding:

// 皟 URL encoding
https://unicodefinder.com/search.php?query=%E7%9A%9F

Encodings

MD5:

6cdb2ddd4651be49acfc8683262a354d

SHA1:

a5445c777a184373eeb3171d234042fdb2d0ce1e

Base64:

55qf