Unicode Finder

"醟" U+919F(CJK UNIFIED IDEOGRAPH-919F)

U+919F
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-919F

Programming

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

Web

CSS
\00919F
HtmlDecimal
醟
HtmlHexadecimal
醟
Url
%E9%86%9F

Code

MD5
e60a22fbc94b9e4fd543512df1e68e69
Sha1
3af75228ea39c3b135f233ce59545ee4efc05044
Base64
6Yaf

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u919F';
console.log(char);  // Output: 醟

Java:

char c = '\u919F';
System.out.println(c);  // Output: 醟

JSON:

{"text": "\u919F"}  // Value: 醟

Python:

char = '\u919F'
print(char)  # Output: 醟

Perl:

my $char = "\x{919F}";
print $char;  # Output: 醟

PHP:

$char = "\x{919F}";
echo $char;  // Output: 醟

Ruby:

char = "\u{919F}"
puts char  # Output: 醟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37279;</p>  <!-- Display: 醟 -->

HTML Hexadecimal:

<p>HTML hex: &#x919F;</p>  <!-- Display: 醟 -->

URL Encoding:

// 醟 URL encoding
https://unicodefinder.com/search.php?query=%E9%86%9F

Encodings

MD5:

e60a22fbc94b9e4fd543512df1e68e69

SHA1:

3af75228ea39c3b135f233ce59545ee4efc05044

Base64:

6Yaf