Unicode Finder

"惕" U+60D5(CJK UNIFIED IDEOGRAPH-60D5)

U+60D5
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-60D5

Programming

C
\u60D5
JavaScript
\u60D5
Java
\u60D5
Json
\u60D5
Python
\u60D5
Perl
\x{60D5}
PHP
\x{60D5}
Ruby
\u{60D5}
Rust
\u{60D5}
Go
\u60D5

Web

CSS
\0060D5
HtmlDecimal
惕
HtmlHexadecimal
惕
Url
%E6%83%95

Code

MD5
e33fc5e2c0ddb3c7d50ff4d73e056410
Sha1
47811b44395d0a6b30ed784e138e087713d951ca
Base64
5oOV

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u60D5';
console.log(char);  // Output: 惕

Java:

char c = '\u60D5';
System.out.println(c);  // Output: 惕

JSON:

{"text": "\u60D5"}  // Value: 惕

Python:

char = '\u60D5'
print(char)  # Output: 惕

Perl:

my $char = "\x{60D5}";
print $char;  # Output: 惕

PHP:

$char = "\x{60D5}";
echo $char;  // Output: 惕

Ruby:

char = "\u{60D5}"
puts char  # Output: 惕

Rust:

let c = '\u{60D5}';
println!("{}", c);  // Output: 惕

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0060D5";  /* Display: 惕 */
}

HTML Decimal:

<p>HTML decimal: &#24789;</p>  <!-- Display: 惕 -->

HTML Hexadecimal:

<p>HTML hex: &#x60D5;</p>  <!-- Display: 惕 -->

URL Encoding:

// 惕 URL encoding
https://unicodefinder.com/search.php?query=%E6%83%95

Encodings

MD5:

e33fc5e2c0ddb3c7d50ff4d73e056410

SHA1:

47811b44395d0a6b30ed784e138e087713d951ca

Base64:

5oOV