Unicode Finder

"噥" U+5665(CJK UNIFIED IDEOGRAPH-5665)

U+5665
Blocknamn
CJK Unified Ideographs
Namn
CJK UNIFIED IDEOGRAPH-5665

Programming

C
\u5665
JavaScript
\u5665
Java
\u5665
Json
\u5665
Python
\u5665
Perl
\x{5665}
PHP
\x{5665}
Ruby
\u{5665}
Rust
\u{5665}
Go
\u5665

Web

CSS
\005665
HtmlDecimal
噥
HtmlHexadecimal
噥
Url
%E5%99%A5

Code

MD5
af420777e670d3d7e72d4e30f03b2a84
Sha1
aec74207949bded58323aa52f5bb41d4ae5b98e7
Base64
5Zml

Användningsexempel

Programming Languages

C:

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

JavaScript:

const char = '\u5665';
console.log(char);  // Output: 噥

Java:

char c = '\u5665';
System.out.println(c);  // Output: 噥

JSON:

{"text": "\u5665"}  // Value: 噥

Python:

char = '\u5665'
print(char)  # Output: 噥

Perl:

my $char = "\x{5665}";
print $char;  # Output: 噥

PHP:

$char = "\x{5665}";
echo $char;  // Output: 噥

Ruby:

char = "\u{5665}"
puts char  # Output: 噥

Rust:

let c = '\u{5665}';
println!("{}", c);  // Output: 噥

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005665";  /* Display: 噥 */
}

HTML Decimal:

<p>HTML decimal: &#22117;</p>  <!-- Display: 噥 -->

HTML Hexadecimal:

<p>HTML hex: &#x5665;</p>  <!-- Display: 噥 -->

URL Encoding:

// 噥 URL encoding
https://unicodefinder.com/search.php?query=%E5%99%A5

Encodings

MD5:

af420777e670d3d7e72d4e30f03b2a84

SHA1:

aec74207949bded58323aa52f5bb41d4ae5b98e7

Base64:

5Zml